Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2022-07-11 16:18:24 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
27c4688d938c8eae66f66f16ce682796a4bdf57f
27c4688d
1 parent
84b4a722
new keys
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
1 deletions
warply_android_sdk/build.gradle
warply_android_sdk/src/main/java/ly/warp/sdk/Warply.java
warply_android_sdk/src/main/java/ly/warp/sdk/io/models/LoyaltyContextualOfferModel.java
warply_android_sdk/build.gradle
View file @
27c4688
...
...
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext
{
PUBLISH_GROUP_ID
=
'ly.warp'
PUBLISH_VERSION
=
'4.5.4-cosbeta2
8i
'
PUBLISH_VERSION
=
'4.5.4-cosbeta2
9
'
PUBLISH_ARTIFACT_ID
=
'warply-android-sdk'
}
...
...
warply_android_sdk/src/main/java/ly/warp/sdk/Warply.java
View file @
27c4688
This diff is collapsed. Click to expand it.
warply_android_sdk/src/main/java/ly/warp/sdk/io/models/LoyaltyContextualOfferModel.java
View file @
27c4688
...
...
@@ -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
;
}
}
...
...
Please
register
or
login
to post a comment