Status
public enum Status : String
Representation of the user account status type.
-
The user account is activated.
Declaration
Swift
case activated = "ACTIVATED" -
The user account is deactivated.
Declaration
Swift
case deactivated = "DE_ACTIVATED" -
The user account is frozen.
Declaration
Swift
case frozen = "FROZEN" -
The user account is locked.
Declaration
Swift
case locked = "LOCKED" -
The user account is pre activated.
Declaration
Swift
case preActivated = "PRE_ACTIVATED"
View on GitHub