Properties
| Name | Type | Description |
|---|---|---|
| bunqme_tab_entry | object | The bunq.me entry containing the payment information. |
| status | string | The status of the bunq.me. Ignored in POST requests but can be used for cancelling the bunq.me by setting status as CANCELLED with a PUT request. |
| event_id | integer | The ID of the related event if the bunqMeTab made by 'split' functionality. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BunqMeTab",
"title": "BunqMeTab",
"type": "object",
"properties": {
"bunqme_tab_entry": {
"type": "object",
"description": "The bunq.me entry containing the payment information.",
"readOnly": false,
"writeOnly": false,
"$ref": "#/components/schemas/BunqMeTabEntry"
},
"status": {
"type": "string",
"description": "The status of the bunq.me. Ignored in POST requests but can be used for cancelling the bunq.me by setting status as CANCELLED with a PUT request.",
"readOnly": false,
"writeOnly": false
},
"event_id": {
"type": "integer",
"description": "The ID of the related event if the bunqMeTab made by 'split' functionality.",
"readOnly": false,
"writeOnly": true
}
},
"required": [
"bunqme_tab_entry"
]
}