ReservationSituationType
Structure
Field | Type | Required | Description |
---|---|---|---|
id | Integer | true | Unique identifier for the ReservationSituationType. |
code | String | true | Code of the ReservationSituationType. |
name | String | true | Name of the ReservationSituationType. |
active | String | true | It says if it's active or not. |
inactiveReason | String | false | The reason why it got inactive. |
applyInReservation | Boolean | false | Enable this option to set individual reservations to this situation |
applyInReservationGroup | Boolean | false | Enable this option to set group reservations to this situation |
checkExpiredDate | Boolean | false | Enable this option to allow this situation to have an expiration date |
countReserved | Boolean | false | Enable this option to sum reservations with this situation as reserved. If this option is disabled, you cannot assign a room. |
removeFromInventory | Boolean | false | Enable this option to remove this situation from inventory |
tentative | Boolean | false | Enable this option to indicate reservations with situation as Tentative. These reservation shows in forecasts and reports in separated columns |
propertyId | int | false | Id of the property (Only for multiproperty request) |
expiredDate | LocalDate | false | date of expiration |
JSON representation
{ "id": 7, "code": "PRO", "name": "Prospect", "nameI18n": "Prospect", "colorCode": "#FDD835", "active": true, "inactiveReason": null, "applyInReservation": true, "applyInReservationGroup": true, "checkExpiredDate": false, "countReserved": false, "removeFromInventory": false, "tentative": false, "expiredDate":null }