Interface ServicesApiModelRangeSlotCapacityQuery

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

RangeSlotCapacityQuery

interface ServicesApiModelRangeSlotCapacityQuery {
    capacityTypes?: (
        | "SCHEDULED_CAPACITY"
        | "AVAILABLE_CAPACITY"
        | "ENCUMBERED_CAPACITY"
        | "RESERVED_CAPACITY"
        | ServicesApiModelCapacityType
    )[];
    endDateTime: string;
    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].

RangeSlotCapacityQuery

endDateTime: string

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

RangeSlotCapacityQuery

startDateTime: string

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

RangeSlotCapacityQuery

MMNEPVFCICPMFPCPTTAAATR