Request schema for the getRangeSlotCapacity operation. This schema is used to define the time range and capacity types that are being queried.

Export

RangeSlotCapacityQuery

interface RangeSlotCapacityQuery {
    capacityTypes?: CapacityType[];
    endDateTime: string;
    startDateTime: string;
}

Properties

capacityTypes?: CapacityType[]

An array of capacity types which are being requested. Default value is [SCHEDULED_CAPACITY].

Memberof

RangeSlotCapacityQuery

endDateTime: string

End date time up to which the capacity slots are being requested in ISO 8601 format.

Memberof

RangeSlotCapacityQuery

startDateTime: string

Start date time from which the capacity slots are being requested in ISO 8601 format.

Memberof

RangeSlotCapacityQuery