Reservation object reduces the capacity of a resource.

Reservation

interface Reservation {
    availability: AvailabilityRecord;
    reservationId?: string;
    type: ReservationTypeEnum;
}

Properties

availability: AvailabilityRecord

Reservation

reservationId?: string

Unique identifier for a reservation. If present, it is treated as an update reservation request and will update the corresponding reservation. Otherwise, it is treated as a new create reservation request.

Reservation

Type of reservation.

Reservation