Properties
| Name | Type | Description |
|---|---|---|
| sender_iban | string | The sender IBAN. |
| receiver_iban | string | The sender IBAN. |
| amount | object | The amount of the draft payment |
| status | string | The status of the draft payment |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentServiceProviderDraftPaymentListing",
"title": "PaymentServiceProviderDraftPaymentListing",
"type": "object",
"properties": {
"sender_iban": {
"type": "string",
"description": "The sender IBAN.",
"readOnly": true,
"writeOnly": false
},
"receiver_iban": {
"type": "string",
"description": "The sender IBAN.",
"readOnly": true,
"writeOnly": false
},
"amount": {
"type": "object",
"description": "The amount of the draft payment",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"status": {
"type": "string",
"description": "The status of the draft payment",
"readOnly": true,
"writeOnly": false
}
}
}