BillingDetails
public struct BillingDetails : Equatable
Billing details of a customer
-
The customer’s billing address
Declaration
Swift
public var address: Address
-
The customer’s email
Note
The value set is displayed in the payment sheet as-is. Depending on the payment method, the customer may be required to edit this value.Declaration
Swift
public var email: String?
-
The customer’s full name
Note
The value set is displayed in the payment sheet as-is. Depending on the payment method, the customer may be required to edit this value.Declaration
Swift
public var name: String?
-
The customer’s phone number without formatting (e.g. 5551234567)
Declaration
Swift
public var phone: String?