Request schema for the getFixedSlotCapacity operation. This schema is used to define the time range, capacity types and slot duration which are being queried.

Export

FixedSlotCapacityQuery

interface FixedSlotCapacityQuery {
    capacityTypes?: CapacityType[];
    endDateTime: string;
    slotDuration?: number;
    startDateTime: string;
}

Properties

capacityTypes?: CapacityType[]

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

Memberof

FixedSlotCapacityQuery

endDateTime: string

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

Memberof

FixedSlotCapacityQuery

slotDuration?: number

Size in which slots are being requested. This value should be a multiple of 5 and fall in the range: 5 <= slotDuration <= 360.

Memberof

FixedSlotCapacityQuery

startDateTime: string

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

Memberof

FixedSlotCapacityQuery