Event System
Page
Find Reservation Results View

View/FindReservation/Results

Triggered when user reaches the Find Reservation Results step, where they will find relevant information relating to their booking.

roomstay.events.on('View/FindReservation/Results', (event: StepFindReservationResultsViewEvent) => {
  console.log(`You are in the Find Reservation Results View Page, with ${event.IEventReservations.length} reservations`)
})

IEventReservations

IEventReservations contains a list of specific reservations data. Useful for checking important details of a customers reservations.

Type: IEventReservation[]