VirtualCardBillingAddress
public struct VirtualCardBillingAddress : Hashable
Billing Address of the card.
-
First line of the address.
Declaration
Swift
public var addressLine1: String -
Second line of the address.
Declaration
Swift
public var addressLine2: String? -
City of the address.
Declaration
Swift
public var city: String -
State of the address.
Declaration
Swift
public var state: String -
Postal code of the address.
Declaration
Swift
public var postalCode: String -
Country of the address.
Declaration
Swift
public var country: String
-
Initialize an instance of
Card.BillingAddress.Declaration
Swift
public init( addressLine1: String, addressLine2: String? = nil, city: String, state: String, postalCode: String, country: String )
VirtualCardBillingAddress Structure Reference