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-12 17:58:59 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0f9476a8b1b7b35afcb0d07a52abf6189e321a7d
0f9476a8
1 parent
65d199a9
update PacingDetails model
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
2 deletions
SwiftWarplyFramework/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
0f9476a
...
...
@@ -7,7 +7,7 @@
<key>
Pods-SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
1
</integer>
<integer>
0
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
0f9476a
...
...
@@ -7,7 +7,7 @@
<key>
SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
0
</integer>
<integer>
1
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
0f9476a
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
0f9476a
...
...
@@ -3928,12 +3928,16 @@ public class swiftApi {
private
var
steps
:
PacingInner
private
var
meters
:
PacingInner
private
var
enabled
:
Bool
private
var
goal_reached
:
Bool
private
var
msg
:
String
public
init
()
{
self
.
steps
=
PacingInner
()
self
.
meters
=
PacingInner
()
self
.
enabled
=
false
self
.
goal_reached
=
false
self
.
msg
=
""
}
public
init
(
dictionary
:
[
String
:
Any
])
{
...
...
@@ -3943,6 +3947,8 @@ public class swiftApi {
self
.
steps
=
PacingInner
(
dictionary
:
pacingDataSteps
)
self
.
meters
=
PacingInner
(
dictionary
:
pacingDataMeters
)
self
.
enabled
=
(
dictionary
[
"enabled"
]
as?
Bool
??
false
)
self
.
goal_reached
=
(
dictionary
[
"goal_reached"
]
as?
Bool
??
false
)
self
.
msg
=
(
dictionary
[
"msg"
]
as?
String
??
""
)
}
public
var
_steps
:
PacingInner
{
...
...
@@ -3971,6 +3977,24 @@ public class swiftApi {
self
.
enabled
=
newValue
}
}
public
var
_goal_reached
:
Bool
{
get
{
// getter
return
self
.
goal_reached
}
set
(
newValue
)
{
//setter
self
.
goal_reached
=
newValue
}
}
public
var
_msg
:
Bool
{
get
{
// getter
return
self
.
msg
}
set
(
newValue
)
{
//setter
self
.
msg
=
newValue
}
}
}
...
...
Please
register
or
login
to post a comment