Interface ServicesApiModelFixedSlotCapacityQuery

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

FixedSlotCapacityQuery

interface ServicesApiModelFixedSlotCapacityQuery {
    capacityTypes?: (
        | "SCHEDULED_CAPACITY"
        | "AVAILABLE_CAPACITY"
        | "ENCUMBERED_CAPACITY"
        | "RESERVED_CAPACITY"
        | ServicesApiModelCapacityType
    )[];
    endDateTime: string;
    slotDuration?: number;
    startDateTime: string;
}

Properties

capacityTypes?: (
    | "SCHEDULED_CAPACITY"
    | "AVAILABLE_CAPACITY"
    | "ENCUMBERED_CAPACITY"
    | "RESERVED_CAPACITY"
    | ServicesApiModelCapacityType
)[]

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

FixedSlotCapacityQuery

endDateTime: string

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

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.

FixedSlotCapacityQuery

startDateTime: string

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

FixedSlotCapacityQuery

MMNEPVFCICPMFPCPTTAAATR