BankAccount

protocol BankAccount

The metadata for a particular bank account

  • The bank account number

    Declaration

    Swift

    var accountNumber: String { get }
  • The last characters of the bank account’s account number

    Declaration

    Swift

    var accountNumberShort: String { get }
  • The bank identifier code

    Declaration

    Swift

    var bankIdentifierCode: String { get }
  • The bank account’s beneficiaries

    Declaration

    Swift

    var beneficiaries: [BankAccountBeneficiary] { get }
  • The bank account’s billing address

    Declaration

    Swift

    var billingAddress: CoarseAddress? { get }
  • The bank account creditor’s information

    Declaration

    Swift

    var creditor: BankAccountCreditor? { get }
  • The bank account’s currency code

    Declaration

    Swift

    var currencyCode: String { get }
  • id

    A unique identifier for the bank account within the PayPal system

    Declaration

    Swift

    var id: String { get }
  • The bank account issuer’s information

    Declaration

    Swift

    var issuer: BankAccountIssuer? { get }
  • Short name for the bank account created by the user

    Declaration

    Swift

    var nickname: String? { get }
  • The bank account’s routing number

    Declaration

    Swift

    var routingNumber: String { get }
  • The bank account’s type

    Declaration

    Swift

    var type: BankAccountType { get }