Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-05-27 16:18:25 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
30054bb6c146d0841c011a350f0661d10c037c1c
30054bb6
1 parent
f1255f73
add LoyaltyGiftsForYouOfferClickEvent model
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
30054bb
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
30054bb
...
...
@@ -1092,4 +1092,46 @@ public class swiftApi {
return
""
}
public
class
LoyaltyGiftsForYouOfferClickEvent
{
private
var
title
:
String
private
var
imageUrl
:
String
private
var
loyaltyPackageId
:
String
public
init
()
{
self
.
title
=
""
self
.
imageUrl
=
""
self
.
loyaltyPackageId
=
""
}
public
var
_title
:
String
{
get
{
// getter
return
self
.
title
}
set
(
newValue
)
{
//setter
self
.
title
=
newValue
}
}
public
var
_imageUrl
:
String
{
get
{
// getter
return
self
.
imageUrl
}
set
(
newValue
)
{
//setter
self
.
imageUrl
=
newValue
}
}
public
var
_loyaltyPackageId
:
String
{
get
{
// getter
return
self
.
loyaltyPackageId
}
set
(
newValue
)
{
//setter
self
.
loyaltyPackageId
=
newValue
}
}
}
}
...
...
Please
register
or
login
to post a comment