Structure
Field | Type | Required | Description |
---|---|---|---|
id | int | true | Unique identifier. |
service | Service | true | |
startDate | date | true | Start date of the service. |
endDate | date | true | End date of the service. |
quantity | int | true | Quantity of services. |
totalAmountAfterTax | bigDecimal | true | Total amount of this ReservationRoomStayService after tax applied. |
totalAmountBeforeTax | bigDecimal | true | Total amount of this ReservationRoomStayService before tax applied. |
reservationRoomStayServiceDailyList | Array of | true |
JSON representation
{ "service": { "id": 233, "code":"PET", "name": "Pet" }, "startDate": "2019-05-03", "endDate": "2019-05-04", "quantity": 1, "reservationRoomStayServiceDailyList": [ { "date": "2019-05-04", "rate": null, "price": 11, "currency": { "code": "EUR", "name": "Euro" }, "offer": null, "offerAmountDiscount": null, "offerPercentDiscount": null, "promotion": null, "promotionAmountDiscount": null, "promotionPercentDiscount": null, "postingDate": null } ] }