Data Models
reservations
I Event Reservation

Interface Event Reservation

An object comprised of important details of a customers completed reservation.

Example object:

{
  reservationId: "RS168757",
  checkInTime: "2023-02-07T14:30:00",
  checkOutTime: "2023-02-11T10:00:00",
  totalPrice: "562.13",
  priceCurrency: "AUD",
  bookedDate: "2022-10-06T16:57:20"
}

reservationId

Generated on object creation, will contain a unique reservation number.

Type: string

checkInTime

Date of first night of the booking

Type: string Format: YYYY-MM-DDTHH:mm:ss

checkOutTime

Date of the day after the last night of booking

Type: string Format: YYYY-MM-DDTHH:mm:ss

totalPrice

Total price of all products in reservation - including tax

Type: string

priceCurrency

The currency currently selected and used for the reservation

Type: string

bookedDate

The date and time the booking was originally placed

Type: string Format: YYYY-MM-DDTHH:mm:ss