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

1.8 KiB

SEPA Debit Response

Structure

SEPADebitResponse

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
authorizationDetails ?SEPADebitAuthorizationDetails Optional Authorization details. getAuthorizationDetails(): ?SEPADebitAuthorizationDetails setAuthorizationDetails(?SEPADebitAuthorizationDetails authorizationDetails): void

Example (as JSON)

{
  "iban_last_chars": "iban_last_chars4",
  "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"
  },
  "authorization_details": {
    "status": "NOT_SUPPORTED"
  }
}