Showing
2 changed files
with
42 additions
and
0 deletions
No preview for this file type
| ... | @@ -1092,4 +1092,46 @@ public class swiftApi { | ... | @@ -1092,4 +1092,46 @@ public class swiftApi { |
| 1092 | return "" | 1092 | return "" |
| 1093 | } | 1093 | } |
| 1094 | 1094 | ||
| 1095 | + | ||
| 1096 | + public class LoyaltyGiftsForYouOfferClickEvent { | ||
| 1097 | + private var title: String | ||
| 1098 | + private var imageUrl: String | ||
| 1099 | + private var loyaltyPackageId: String | ||
| 1100 | + | ||
| 1101 | + | ||
| 1102 | + public init() { | ||
| 1103 | + self.title = "" | ||
| 1104 | + self.imageUrl = "" | ||
| 1105 | + self.loyaltyPackageId = "" | ||
| 1106 | + | ||
| 1107 | + } | ||
| 1108 | + | ||
| 1109 | + public var _title: String { | ||
| 1110 | + get { // getter | ||
| 1111 | + return self.title | ||
| 1112 | + } | ||
| 1113 | + set(newValue) { //setter | ||
| 1114 | + self.title = newValue | ||
| 1115 | + } | ||
| 1116 | + } | ||
| 1117 | + | ||
| 1118 | + public var _imageUrl: String { | ||
| 1119 | + get { // getter | ||
| 1120 | + return self.imageUrl | ||
| 1121 | + } | ||
| 1122 | + set(newValue) { //setter | ||
| 1123 | + self.imageUrl = newValue | ||
| 1124 | + } | ||
| 1125 | + } | ||
| 1126 | + | ||
| 1127 | + public var _loyaltyPackageId: String { | ||
| 1128 | + get { // getter | ||
| 1129 | + return self.loyaltyPackageId | ||
| 1130 | + } | ||
| 1131 | + set(newValue) { //setter | ||
| 1132 | + self.loyaltyPackageId = newValue | ||
| 1133 | + } | ||
| 1134 | + } | ||
| 1135 | + } | ||
| 1136 | + | ||
| 1095 | } | 1137 | } | ... | ... |
-
Please register or login to post a comment