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
-
A custom action on the step. Must be handled by the app.
Declaration
Swift
case custom(String)
-
The string for the custom action (if applicable).
Declaration
Swift
public var customAction: String? { get }
-
Declaration
Swift
public init(rawValue: String)
-
Declaration
Swift
public var rawValue: String { get }
-
Declaration
Swift
public init(stringLiteral value: String)
-
Declaration
Swift
public var stringValue: String { get }
-
Declaration
Swift
public init?(stringValue: String)
-
Declaration
Swift
public var intValue: Int? { get }
-
Declaration
Swift
public init?(intValue: Int)