Showing
3 changed files
with
41 additions
and
1 deletions
... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | ... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' |
2 | 2 | ||
3 | ext { | 3 | ext { |
4 | PUBLISH_GROUP_ID = 'ly.warp' | 4 | PUBLISH_GROUP_ID = 'ly.warp' |
5 | - PUBLISH_VERSION = '4.5.4-cosbeta28i' | 5 | + PUBLISH_VERSION = '4.5.4-cosbeta29' |
6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
7 | } | 7 | } |
8 | 8 | ... | ... |
This diff is collapsed. Click to expand it.
... | @@ -37,6 +37,10 @@ public class LoyaltyContextualOfferModel { | ... | @@ -37,6 +37,10 @@ public class LoyaltyContextualOfferModel { |
37 | private String wave; | 37 | private String wave; |
38 | private String validity; | 38 | private String validity; |
39 | private String offerAudienceLevel; | 39 | private String offerAudienceLevel; |
40 | + private String imageUrl; | ||
41 | + private String title; | ||
42 | + private String subtitle; | ||
43 | + private String description; | ||
40 | 44 | ||
41 | 45 | ||
42 | public LoyaltyContextualOfferModel() { | 46 | public LoyaltyContextualOfferModel() { |
... | @@ -67,6 +71,10 @@ public class LoyaltyContextualOfferModel { | ... | @@ -67,6 +71,10 @@ public class LoyaltyContextualOfferModel { |
67 | this.wave = ""; | 71 | this.wave = ""; |
68 | this.validity = ""; | 72 | this.validity = ""; |
69 | this.offerAudienceLevel = ""; | 73 | this.offerAudienceLevel = ""; |
74 | + this.imageUrl = ""; | ||
75 | + this.title = ""; | ||
76 | + this.subtitle = ""; | ||
77 | + this.description = ""; | ||
70 | } | 78 | } |
71 | 79 | ||
72 | public LoyaltyContextualOfferModel(JSONObject jobj) { | 80 | public LoyaltyContextualOfferModel(JSONObject jobj) { |
... | @@ -325,4 +333,36 @@ public class LoyaltyContextualOfferModel { | ... | @@ -325,4 +333,36 @@ public class LoyaltyContextualOfferModel { |
325 | public void setOfferAudienceLevel(String offerAudienceLevel) { | 333 | public void setOfferAudienceLevel(String offerAudienceLevel) { |
326 | this.offerAudienceLevel = offerAudienceLevel; | 334 | this.offerAudienceLevel = offerAudienceLevel; |
327 | } | 335 | } |
336 | + | ||
337 | + public String getImageUrl() { | ||
338 | + return imageUrl; | ||
339 | + } | ||
340 | + | ||
341 | + public void setImageUrl(String imageUrl) { | ||
342 | + this.imageUrl = imageUrl; | ||
343 | + } | ||
344 | + | ||
345 | + public String getTitle() { | ||
346 | + return title; | ||
347 | + } | ||
348 | + | ||
349 | + public void setTitle(String title) { | ||
350 | + this.title = title; | ||
351 | + } | ||
352 | + | ||
353 | + public String getSubtitle() { | ||
354 | + return subtitle; | ||
355 | + } | ||
356 | + | ||
357 | + public void setSubtitle(String subtitle) { | ||
358 | + this.subtitle = subtitle; | ||
359 | + } | ||
360 | + | ||
361 | + public String getDescription() { | ||
362 | + return description; | ||
363 | + } | ||
364 | + | ||
365 | + public void setDescription(String description) { | ||
366 | + this.description = description; | ||
367 | + } | ||
328 | } | 368 | } | ... | ... |
-
Please register or login to post a comment