forked from LiveCarta/PayPal-PHP-Server-SDK
* Automated commit message * Automated commit message * Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
801 B
801 B
Capture Status With Details
The status and status details of a captured payment.
Structure
CaptureStatusWithDetails
Fields
| Name | Type | Tags | Description | Getter | Setter |
|---|---|---|---|---|---|
status |
?string(CaptureStatus) |
Optional | The status of the captured payment. | getStatus(): ?string | setStatus(?string status): void |
statusDetails |
?CaptureStatusDetails |
Optional | The details of the captured payment status. | getStatusDetails(): ?CaptureStatusDetails | setStatusDetails(?CaptureStatusDetails statusDetails): void |
Example (as JSON)
{
"status": "COMPLETED",
"status_details": {
"reason": "VERIFICATION_REQUIRED"
}
}