DigitalPayAddress

public protocol DigitalPayAddress

A customer’s address

  • The recipient’s first name.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    var countryCode: String { get }