UpdateReservationRecord entity contains the Reservation if there is an error/warning while performing the requested operation on it, otherwise it will contain the new reservationId.

Export

UpdateReservationRecord

interface UpdateReservationRecord {
    errors?: Error[];
    reservation?: Reservation;
    warnings?: Warning[];
}

Properties

errors?: Error[]

A list of error responses returned when a request is unsuccessful.

Memberof

UpdateReservationRecord

reservation?: Reservation

Memberof

UpdateReservationRecord

warnings?: Warning[]

A list of warnings returned in the sucessful execution response of an API request.

Memberof

UpdateReservationRecord