forked from LiveCarta/PayPal-PHP-Server-SDK
24 lines
588 B
Markdown
24 lines
588 B
Markdown
|
|
# ACH Debit Response
|
|
|
|
A Resource representing a response of vaulted a ACH Debit Account.
|
|
|
|
## Structure
|
|
|
|
`ACHDebitResponse`
|
|
|
|
## Fields
|
|
|
|
| Name | Type | Tags | Description | Getter | Setter |
|
|
| --- | --- | --- | --- | --- | --- |
|
|
| `verificationStatus` | `?string` | Optional | The ach debit verification status.<br>**Default**: `'NOT_VERIFIED'`<br>**Constraints**: *Minimum Length*: `1`, *Maximum Length*: `255` | getVerificationStatus(): ?string | setVerificationStatus(?string verificationStatus): void |
|
|
|
|
## Example (as JSON)
|
|
|
|
```json
|
|
{
|
|
"verification_status": "NOT_VERIFIED"
|
|
}
|
|
```
|
|
|