Showing
1 changed file
with
42 additions
and
0 deletions
... | @@ -2072,4 +2072,46 @@ public class swiftApi { | ... | @@ -2072,4 +2072,46 @@ public class swiftApi { |
2072 | return GlobalVariables.dealsSum | 2072 | return GlobalVariables.dealsSum |
2073 | } | 2073 | } |
2074 | 2074 | ||
2075 | + | ||
2076 | + public class LoyaltyGiftsForYouPackage { | ||
2077 | + private var title: String | ||
2078 | + private var imageUrl: String | ||
2079 | + private var loyaltyPackageId: String | ||
2080 | + | ||
2081 | + | ||
2082 | + public init() { | ||
2083 | + self.title = "" | ||
2084 | + self.imageUrl = "" | ||
2085 | + self.loyaltyPackageId = "" | ||
2086 | + | ||
2087 | + } | ||
2088 | + | ||
2089 | + public var _title: String { | ||
2090 | + get { // getter | ||
2091 | + return self.title | ||
2092 | + } | ||
2093 | + set(newValue) { //setter | ||
2094 | + self.title = newValue | ||
2095 | + } | ||
2096 | + } | ||
2097 | + | ||
2098 | + public var _imageUrl: String { | ||
2099 | + get { // getter | ||
2100 | + return self.imageUrl | ||
2101 | + } | ||
2102 | + set(newValue) { //setter | ||
2103 | + self.imageUrl = newValue | ||
2104 | + } | ||
2105 | + } | ||
2106 | + | ||
2107 | + public var _loyaltyPackageId: String { | ||
2108 | + get { // getter | ||
2109 | + return self.loyaltyPackageId | ||
2110 | + } | ||
2111 | + set(newValue) { //setter | ||
2112 | + self.loyaltyPackageId = newValue | ||
2113 | + } | ||
2114 | + } | ||
2115 | + } | ||
2116 | + | ||
2075 | } | 2117 | } | ... | ... |
-
Please register or login to post a comment