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-06-29 16:52:51 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1e5a8e73e94bf7a984a1b002984482d8c7e970fe
1e5a8e73
1 parent
9a719fff
add LoyaltyGiftsForYouPackage
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
1e5a8e7
...
...
@@ -2072,4 +2072,46 @@ public class swiftApi {
return
GlobalVariables
.
dealsSum
}
public
class
LoyaltyGiftsForYouPackage
{
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