RSDUIActionType
public enum RSDUIActionType
The RSDUIActionType
enum describes standard navigation actions that are common to a
given UI step. It is extendable using the custom field.
-
Standard navigation elements that are common to most steps.
Declaration
Swift
case navigation(Navigation)
-
Standard navigation elements that are common to most steps.
See moreDeclaration
Swift
public enum Navigation : String
-
The string for the custom action (if applicable).
Declaration
Swift
public var customAction: String?
-
A custom action on the step. Must be handled by the app.
Declaration
Swift
case custom(String)
-
Declaration
Swift
public init(rawValue: RawValue)
-
Declaration
Swift
public var rawValue: String
-
Declaration
Swift
public static func ==(lhs: RSDUIActionType, rhs: RSDUIActionType) -> Bool
-
Undocumented
Declaration
Swift
public static func ==(lhs: String, rhs: RSDUIActionType) -> Bool
-
Undocumented
Declaration
Swift
public static func ==(lhs: RSDUIActionType, rhs: String) -> Bool
-
Declaration
Swift
public var hashValue : Int
-
Declaration
Swift
public init(stringLiteral value: String)
-
Declaration
Swift
public var stringValue: String
-
Declaration
Swift
public init?(stringValue: String)
-
Declaration
Swift
public var intValue: Int?
-
Declaration
Swift
public init?(intValue: Int)