CkoAddress
public struct CkoAddress : Codable
Address
-
Line 1 of the address
Declaration
Swift
public let addressLine1: String?
-
Line 2 of the address
Declaration
Swift
public let addressLine2: String?
-
The address city
Declaration
Swift
public let city: String?
-
The address state
Declaration
Swift
public let state: String?
-
The address zip/postal code
Declaration
Swift
public let zip: String?
-
The two-letter ISO code of the address country
Declaration
Swift
public let country: String?
-
Undocumented
Declaration
Swift
public init(addressLine1: String? = nil, addressLine2: String? = nil, city: String? = nil, state: String? = nil, zip: String? = nil, country: String? = nil)