ComponentData
public enum ComponentData : Codable
A union type for component data
-
Integer data entered into a component
Declaration
Swift
case int(key: String, value: Int?) -
Boolean data entered into a component
Declaration
Swift
case bool(key: String, value: Bool) -
String data entered into a component
Declaration
Swift
case string(key: String, value: String) -
Multi-string data entered into a component
Declaration
Swift
case strings(key: String, value: [String]) -
Double data entered into a component
Declaration
Swift
case double(key: String, value: Double?) -
Address data entered into a component
Declaration
Swift
case address(key: String, value: [String : String])
View on GitHub
ComponentData Enumeration Reference