Showing
1 changed file
with
20 additions
and
2 deletions
| ... | @@ -633,11 +633,11 @@ public class swiftApi { | ... | @@ -633,11 +633,11 @@ public class swiftApi { |
| 633 | public var logo_url: String? | 633 | public var logo_url: String? |
| 634 | public let offer_category: String? | 634 | public let offer_category: String? |
| 635 | public var title: String? | 635 | public var title: String? |
| 636 | - public let subtitle: String? | 636 | + public var subtitle: String? |
| 637 | public let session_uuid: String? | 637 | public let session_uuid: String? |
| 638 | public let subcategory: String? | 638 | public let subcategory: String? |
| 639 | public let is_new: Bool? | 639 | public let is_new: Bool? |
| 640 | - public let message: String? | 640 | + public var message: String? |
| 641 | public let loyaltyCampaignId: String? | 641 | public let loyaltyCampaignId: String? |
| 642 | public let hasExtraFields: Bool? | 642 | public let hasExtraFields: Bool? |
| 643 | public let ccms_offer: String? | 643 | public let ccms_offer: String? |
| ... | @@ -795,6 +795,24 @@ public class swiftApi { | ... | @@ -795,6 +795,24 @@ public class swiftApi { |
| 795 | } | 795 | } |
| 796 | } | 796 | } |
| 797 | 797 | ||
| 798 | + public var _subtitle: String? { | ||
| 799 | + get { // getter | ||
| 800 | + return self.subtitle | ||
| 801 | + } | ||
| 802 | + set(newValue) { //setter | ||
| 803 | + self.subtitle = newValue | ||
| 804 | + } | ||
| 805 | + } | ||
| 806 | + | ||
| 807 | + public var _message: String? { | ||
| 808 | + get { // getter | ||
| 809 | + return self.message | ||
| 810 | + } | ||
| 811 | + set(newValue) { //setter | ||
| 812 | + self.message = newValue | ||
| 813 | + } | ||
| 814 | + } | ||
| 815 | + | ||
| 798 | public var _loyaltyPackageId: String? { | 816 | public var _loyaltyPackageId: String? { |
| 799 | get { // getter | 817 | get { // getter |
| 800 | return self.loyaltyPackageId | 818 | return self.loyaltyPackageId | ... | ... |
-
Please register or login to post a comment