Panagiotis Triantafyllou

new keys

......@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'ly.warp'
PUBLISH_VERSION = '4.5.4-cosbeta28i'
PUBLISH_VERSION = '4.5.4-cosbeta29'
PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
}
......
......@@ -37,6 +37,10 @@ public class LoyaltyContextualOfferModel {
private String wave;
private String validity;
private String offerAudienceLevel;
private String imageUrl;
private String title;
private String subtitle;
private String description;
public LoyaltyContextualOfferModel() {
......@@ -67,6 +71,10 @@ public class LoyaltyContextualOfferModel {
this.wave = "";
this.validity = "";
this.offerAudienceLevel = "";
this.imageUrl = "";
this.title = "";
this.subtitle = "";
this.description = "";
}
public LoyaltyContextualOfferModel(JSONObject jobj) {
......@@ -325,4 +333,36 @@ public class LoyaltyContextualOfferModel {
public void setOfferAudienceLevel(String offerAudienceLevel) {
this.offerAudienceLevel = offerAudienceLevel;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getSubtitle() {
return subtitle;
}
public void setSubtitle(String subtitle) {
this.subtitle = subtitle;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
......