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-09-01 18:28:30 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
26089b5bd321d9ffd695b26acac700c9775d1879
26089b5b
1 parent
136ca5ae
update CampaignItemModel
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
26089b5
...
...
@@ -633,11 +633,11 @@ public class swiftApi {
public
var
logo_url
:
String
?
public
let
offer_category
:
String
?
public
var
title
:
String
?
public
let
subtitle
:
String
?
public
var
subtitle
:
String
?
public
let
session_uuid
:
String
?
public
let
subcategory
:
String
?
public
let
is_new
:
Bool
?
public
let
message
:
String
?
public
var
message
:
String
?
public
let
loyaltyCampaignId
:
String
?
public
let
hasExtraFields
:
Bool
?
public
let
ccms_offer
:
String
?
...
...
@@ -795,6 +795,24 @@ public class swiftApi {
}
}
public
var
_subtitle
:
String
?
{
get
{
// getter
return
self
.
subtitle
}
set
(
newValue
)
{
//setter
self
.
subtitle
=
newValue
}
}
public
var
_message
:
String
?
{
get
{
// getter
return
self
.
message
}
set
(
newValue
)
{
//setter
self
.
message
=
newValue
}
}
public
var
_loyaltyPackageId
:
String
?
{
get
{
// getter
return
self
.
loyaltyPackageId
...
...
Please
register
or
login
to post a comment