UserWorkoutState
public enum UserWorkoutState : String, Codable
The state of a workout being completed
-
Workout has been completed
Declaration
Swift
case completed -
Workout is yet to be completed or acknowledged
Declaration
Swift
case pending -
Did not attempt / did not start
Declaration
Swift
case didNotStart = "dns" -
Did not finish / incomplete
Declaration
Swift
case didNotFinish = "dnf"
View on GitHub
UserWorkoutState Enumeration Reference