Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    Interface FixedSlotCapacityQuery

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

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

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

    endDateTime: string

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

    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.

    startDateTime: string

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