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-28 13:34:48 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b9703236c021b35d4cd418756edb7d477a933fd9
b9703236
1 parent
a17c7169
ProfileModel minor fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
b970323
...
...
@@ -762,7 +762,7 @@ public class swiftApi {
public
let
optin_sms_segmentation
:
Bool
?
init
()
{
public
init
()
{
self
.
ack_optin
=
false
self
.
billing_info
=
[
String
:
Any
]()
self
.
birthday
=
""
...
...
@@ -800,7 +800,7 @@ public class swiftApi {
}
init
(
dictionary
:
[
String
:
Any
])
{
public
init
(
dictionary
:
[
String
:
Any
])
{
self
.
ack_optin
=
dictionary
[
"ack_optin"
]
as?
Bool
?
??
false
self
.
billing_info
=
dictionary
[
"billing_info"
]
as?
[
String
:
Any
]?
??
[
""
:
""
]
self
.
birthday
=
dictionary
[
"birthday"
]
as?
String
?
??
""
...
...
Please
register
or
login
to post a comment