Properties
| Name | Type | Description |
|---|---|---|
| VoucherId | string | Unique identifier of [Voucher](https://mews-systems.gitbook.io/connector-api/operations/#voucher). |
| RateId | string | Unique identifier of [Rate](https://mews-systems.gitbook.io/connector-api/operations/rates/#rate) the voucher is assigned with. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VoucherAssignment",
"title": "Voucher assignment",
"type": "object",
"properties": {
"VoucherId": {
"type": "string",
"description": "Unique identifier of [Voucher](https://mews-systems.gitbook.io/connector-api/operations/#voucher).",
"format": "uuid"
},
"RateId": {
"type": "string",
"description": "Unique identifier of [Rate](https://mews-systems.gitbook.io/connector-api/operations/rates/#rate) the voucher is assigned with.",
"format": "uuid"
}
},
"additionalProperties": false,
"x-schema-id": "VoucherAssignment"
}