PaymentAgreementBillingAddress

public protocol PaymentAgreementBillingAddress

The customer’s billing address

  • The customer’s first name.

    Declaration

    Swift

    var firstName: String { get }
  • The customer’s last name.

    Declaration

    Swift

    var lastName: String { get }
  • The customer’s email address.

    Declaration

    Swift

    var email: String { get }
  • The customer’s company name.

    Declaration

    Swift

    var company: String? { get }
  • The customer’s extended address line.

    Declaration

    Swift

    var extendedAddress: String? { get }
  • The customer’s street address line.

    Declaration

    Swift

    var streetAddress: String { get }
  • The customer’s suburb.

    Declaration

    Swift

    var suburb: String { get }
  • The customer’s abbreviated state or territory.

    Declaration

    Swift

    var stateOrTerritory: String { get }
  • The customer’s postal code.

    Declaration

    Swift

    var postalCode: String { get }
  • The customer’s Alpha-2 (2-character) ISO-3166-1 country code.

    Declaration

    Swift

    var countryCode: String { get }