Showing
1 changed file
with
11 additions
and
0 deletions
... | @@ -3970,6 +3970,7 @@ public class swiftApi { | ... | @@ -3970,6 +3970,7 @@ public class swiftApi { |
3970 | private var acceptedConsent: Bool | 3970 | private var acceptedConsent: Bool |
3971 | private var guid: String | 3971 | private var guid: String |
3972 | private var msisdnList: Array<String> | 3972 | private var msisdnList: Array<String> |
3973 | + private var language: String | ||
3973 | 3974 | ||
3974 | 3975 | ||
3975 | public init() { | 3976 | public init() { |
... | @@ -3977,6 +3978,7 @@ public class swiftApi { | ... | @@ -3977,6 +3978,7 @@ public class swiftApi { |
3977 | self.acceptedConsent = false | 3978 | self.acceptedConsent = false |
3978 | self.guid = "" | 3979 | self.guid = "" |
3979 | self.msisdnList = [] | 3980 | self.msisdnList = [] |
3981 | + self.language = "" | ||
3980 | } | 3982 | } |
3981 | 3983 | ||
3982 | public var _nonTelco: Bool { | 3984 | public var _nonTelco: Bool { |
... | @@ -4014,6 +4016,15 @@ public class swiftApi { | ... | @@ -4014,6 +4016,15 @@ public class swiftApi { |
4014 | self.msisdnList = newValue | 4016 | self.msisdnList = newValue |
4015 | } | 4017 | } |
4016 | } | 4018 | } |
4019 | + | ||
4020 | + public var _language: String { | ||
4021 | + get { // getter | ||
4022 | + return self.language | ||
4023 | + } | ||
4024 | + set(newValue) { //setter | ||
4025 | + self.language = newValue | ||
4026 | + } | ||
4027 | + } | ||
4017 | } | 4028 | } |
4018 | 4029 | ||
4019 | 4030 | ... | ... |
-
Please register or login to post a comment