Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the PaymentAutoAllocateInstance. |
| created | string | The timestamp when the PaymentAutoAllocateInstance was created. |
| updated | string | The timestamp when the PaymentAutoAllocateInstance was last updated. |
| payment_auto_allocate_id | integer | The ID of the payment auto allocate this instance belongs to. |
| status | string | The status of the payment auto allocate instance. SUCCEEDED or FAILED. |
| error_message | array | The error message, if the payment auto allocating failed. |
| payment_batch | object | The payment batch allocating all the payments. |
| payment_id | integer | The ID of the payment that triggered the allocating of the payments. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentAutoAllocateInstanceRead",
"title": "PaymentAutoAllocateInstanceRead",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the PaymentAutoAllocateInstance.",
"readOnly": true,
"writeOnly": false
},
"created": {
"type": "string",
"description": "The timestamp when the PaymentAutoAllocateInstance was created.",
"readOnly": true,
"writeOnly": false
},
"updated": {
"type": "string",
"description": "The timestamp when the PaymentAutoAllocateInstance was last updated.",
"readOnly": true,
"writeOnly": false
},
"payment_auto_allocate_id": {
"type": "integer",
"description": "The ID of the payment auto allocate this instance belongs to.",
"readOnly": true,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the payment auto allocate instance. SUCCEEDED or FAILED.",
"readOnly": true,
"writeOnly": false
},
"error_message": {
"type": "array",
"description": "The error message, if the payment auto allocating failed.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/Error"
}
},
"payment_batch": {
"type": "object",
"description": "The payment batch allocating all the payments.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/PaymentBatch"
},
"payment_id": {
"type": "integer",
"description": "The ID of the payment that triggered the allocating of the payments.",
"readOnly": true,
"writeOnly": false
}
}
}