Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the customer statement model. |
| created | string | The timestamp of the statement model's creation. |
| updated | string | The timestamp of the statement model's last update. |
| date_start | string | The date from when this statement shows transactions. |
| date_end | string | The date until which statement shows transactions. |
| status | string | The status of the export. |
| card_id | integer | The card for which this statement was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExportStatementCardPdfRead",
"title": "ExportStatementCardPdfRead",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the customer statement model.",
"readOnly": true,
"writeOnly": false
},
"created": {
"type": "string",
"description": "The timestamp of the statement model's creation.",
"readOnly": true,
"writeOnly": false
},
"updated": {
"type": "string",
"description": "The timestamp of the statement model's last update.",
"readOnly": true,
"writeOnly": false
},
"date_start": {
"type": "string",
"description": "The date from when this statement shows transactions.",
"readOnly": true,
"writeOnly": false
},
"date_end": {
"type": "string",
"description": "The date until which statement shows transactions.",
"readOnly": true,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the export.",
"readOnly": true,
"writeOnly": false
},
"card_id": {
"type": "integer",
"description": "The card for which this statement was created.",
"readOnly": true,
"writeOnly": false
}
}
}