Structure
Field | Type | Required | Description |
---|---|---|---|
id | Integer | true | Unique identifier for the ReservationGroupRoomBlock. |
productAccomodation | Product | true | Related product with its occupancy (adults, junior, child, infant). |
adult | Integer | false | |
junior | Integer | false | |
child | Integer | false | |
infant | Integer | false | |
reservationGroupRoomBlockDailyList | List of ReservationGroupRoomBlockDaily. | true | Daily detail of this room block. |
JSON representation
{ "id": 1, "productAccommodation": { "id": 722, "chainProductId": 49, "code": "DBL", "name": "Double", "nameI18n": "Double", "productType": { "id": 1, "code": "ACC", "name": "Accommodation", "nameI18n": "Accommodation" } }, "propertyRoomSubType": null, "adult": 2, "junior": 0, "child": 0, "infant": 0, "reservationGroupRoomBlockDailyList": [ { "id": 1, "date": "2024-01-02", "quantity": 1, "price": 800.000000, "quantityConsumed": 1, "quantityAvailable": 0 }, { "id": 3, "date": "2024-01-03", "quantity": 0, "price": 0.000000, "quantityConsumed": 0, "quantityAvailable": 0 }, { "id": 4, "date": "2024-01-04", "quantity": 0, "price": 0.000000, "quantityConsumed": 0, "quantityAvailable": 0 }, { "id": 5, "date": "2024-01-05", "quantity": 0, "price": 0.000000, "quantityConsumed": 0, "quantityAvailable": 0 } ] }