View/FindReservation/Results
Triggered when a 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 guest's reservations.
Type: IEventReservation
[]