Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| currency | string | |
| id | string | |
| notes | string | |
| raw | object | |
| status | string | |
| total_amount | number | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentPayout",
"title": "PaymentPayout",
"properties": {
"created_at": {
"type": "string"
},
"currency": {
"type": "string"
},
"id": {
"type": "string"
},
"notes": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"status": {
"enum": [
"SUCCEEDED",
"PENDING",
"FAILED",
"CANCELED"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"total_amount": {
"type": "number"
},
"updated_at": {
"type": "string"
}
},
"required": [
"total_amount"
],
"type": "object"
}