CreateReservationRecord 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

CreateReservationRecord

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

Properties

errors?: Error[]

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

Memberof

CreateReservationRecord

reservation?: Reservation

Memberof

CreateReservationRecord

warnings?: Warning[]

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

Memberof

CreateReservationRecord