Booking details
Object
| Name | Type | Details | Mandatory | Description |
|---|---|---|---|---|
| class | string | Y | The type of object which is being returned. In this case it will be booking_details. | |
| type | string | HOTEL | Y | The type of the booking. |
| booking_id | string | max length 100 | Y | The partner reference of the booking. |
| check_in_date | string | YYYY-mm-dd | Y | The check-in date of the booking. |
| check_out_date | string | YYYY-mm-dd | Y | The check-out date of the booking. |
| total_booking_amount | int | Y | The total booking fee amount in cents (500 XXX = 5.00 XXX). | |
| booking_currency | string | [A-Z]3 | Y | The booking currency (ISO-4217), saved for information purposes only. |
Example
{
"class": "booking_details",
"type": "HOTEL",
"booking_id": "test-ref",
"check_in_date": "2016-01-25",
"check_out_date": "2016-01-30",
"total_booking_amount" :500,
"booking_currency": "EUR"
}