Skip to main content

Events


Method#

This method allows you to attach events to a booking

suspend fun postBooking(postBookingBody: PostBookingBody, bookingID: String): BookingResponse

Request Model#

Represents the structure of the PostBookingBody object required to add an event to a booking.

data class PostBookingBody(val operation: String, val origin: String)