1
0
Files
PayPal-PHP-Server-SDK/doc/models/vault-sepa-debit-response.md
2024-09-06 15:38:17 +05:00

1.5 KiB

Vault SEPA Debit Response

An API resource used in the response of securely storing a SEPA Debit.

Structure

VaultSEPADebitResponse

Fields

Name Type Tags Description Getter Setter
ibanLastChars ?string Optional The last characters of the IBAN used to pay.
Constraints: Minimum Length: 4, Maximum Length: 34, Pattern: [a-zA-Z0-9]{4}
getIbanLastChars(): ?string setIbanLastChars(?string ibanLastChars): void
accountHolderName mixed Optional - getAccountHolderName(): setAccountHolderName( accountHolderName): void
billingAddress ?Address Optional The portable international postal address. Maps to AddressValidationMetadata and HTML 5.1 Autofilling form controls: the autocomplete attribute. getBillingAddress(): ?Address setBillingAddress(?Address billingAddress): void

Example (as JSON)

{
  "iban_last_chars": "iban_last_chars8",
  "account_holder_name": {
    "key1": "val1",
    "key2": "val2"
  },
  "billing_address": {
    "address_line_1": "address_line_12",
    "address_line_2": "address_line_28",
    "admin_area_2": "admin_area_28",
    "admin_area_1": "admin_area_14",
    "postal_code": "postal_code0",
    "country_code": "country_code8"
  }
}