ShippingAddress
public struct ShippingAddress : Codable, Equatable
The shipping address of the reward response.
-
Value representing the entity id.
Declaration
Swift
public var id: Int
-
The street address of the shipping address.
Declaration
Swift
public var streetAddress: String
-
The city of the shipping address.
Declaration
Swift
public var city: String
-
The zip code of the shipping address.
Declaration
Swift
public var zipCode: String
-
The state of the shipping address.
Declaration
Swift
public var state: String
-
The country code of the shipping address.
Declaration
Swift
public var countryCode: String
-
Date when the shipping address was created.
Declaration
Swift
public var createdAt: String
-
Date when the shipping address was last update.
Declaration
Swift
public var updatedAt: String
-
Undocumented
Declaration
Swift
public init(id: Int, streetAddress: String, city: String, zipCode: String, state: String, countryCode: String, createdAt: String, updatedAt: String)