ActivityStatus
public enum ActivityStatus : String, Codable
The set of available activity status types.
case online
case seenRecently
case offline
-
The user is currently online.
Declaration
Swift
case online = "Online"
-
The user was recently online.
Declaration
Swift
case seenRecently = "Seen Recently"
-
The user is offline.
Declaration
Swift
case offline = "Offline"
-
The string value of an activity status type.
Declaration
Swift
public var stringValue: String { get }
-
The symbol value of an activity status type.
Declaration
Swift
public var symbolValue: String { get }
-
The color value of an activity status type.
Declaration
Swift
public var colorValue: UIColor { get }