Bunq · Schema

ExportStatementPaymentRead

Banking

Properties

Name Type Description
id integer The id of the single payment statement model.
created string The timestamp of the statement model's creation.
updated string The timestamp of the statement model's last update.
status string The status of the export.
View JSON Schema on GitHub

JSON Schema

bunq-exportstatementpaymentread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportStatementPaymentRead",
  "title": "ExportStatementPaymentRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the single payment 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
    },
    "status": {
      "type": "string",
      "description": "The status of the export.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}