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
2023-12-19 12:30:13 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
13dcd65d2fca8c274edef4e07458965f787c6c93
13dcd65d
1 parent
8ea6cb5d
add language to CustomerStateModel
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
13dcd65
...
...
@@ -3970,6 +3970,7 @@ public class swiftApi {
private
var
acceptedConsent
:
Bool
private
var
guid
:
String
private
var
msisdnList
:
Array
<
String
>
private
var
language
:
String
public
init
()
{
...
...
@@ -3977,6 +3978,7 @@ public class swiftApi {
self
.
acceptedConsent
=
false
self
.
guid
=
""
self
.
msisdnList
=
[]
self
.
language
=
""
}
public
var
_nonTelco
:
Bool
{
...
...
@@ -4014,6 +4016,15 @@ public class swiftApi {
self
.
msisdnList
=
newValue
}
}
public
var
_language
:
String
{
get
{
// getter
return
self
.
language
}
set
(
newValue
)
{
//setter
self
.
language
=
newValue
}
}
}
...
...
Please
register
or
login
to post a comment