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-27 19:12:26 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1c2c9046548f3e8d5134b2784cf925ff9ebead94
1c2c9046
1 parent
4c482aa7
add CouponEventModel
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
1c2c904
...
...
@@ -1771,4 +1771,24 @@ public class swiftApi {
return
GlobalVariables
.
loyaltyBadge
}
public
class
CouponEventModel
{
private
var
success
:
Bool
public
init
()
{
self
.
success
=
true
}
public
var
_success
:
Bool
{
get
{
// getter
return
self
.
success
}
set
(
newValue
)
{
//setter
self
.
success
=
newValue
}
}
}
}
...
...
Please
register
or
login
to post a comment