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
2024-05-08 16:24:33 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0feb590115483055364af4213b480045c31aaae7
0feb5901
1 parent
03dd00ea
add WalletActiveCouponBadgeModel
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
0feb590
...
...
@@ -8675,4 +8675,44 @@ public class swiftApi {
}
public
class
WalletActiveCouponBadgeModel
{
private
var
id
:
String
private
var
count
:
Int
private
var
weight
:
Int
public
init
()
{
self
.
id
=
""
self
.
count
=
0
self
.
weight
=
0
}
public
var
_id
:
String
{
get
{
// getter
return
self
.
id
}
set
(
newValue
)
{
//setter
self
.
id
=
newValue
}
}
public
var
_count
:
Int
{
get
{
// getter
return
self
.
count
}
set
(
newValue
)
{
//setter
self
.
count
=
newValue
}
}
public
var
_weight
:
Int
{
get
{
// getter
return
self
.
weight
}
set
(
newValue
)
{
//setter
self
.
weight
=
newValue
}
}
}
}
...
...
Please
register
or
login
to post a comment