BillingAddress
public struct BillingAddress : Equatable
Representation of an BillingAddress data structure for depicting a card/funding source billing address.
-
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
BillingAddress
.Declaration
Swift
public init(addressLine1: String, addressLine2: String? = nil, city: String, state: String, postalCode: String, country: String)