Capacity slots represented in a format similar to availability rules.

Export

RangeSlot

interface RangeSlot {
    capacity?: number;
    endDateTime?: string;
    startDateTime?: string;
}

Properties

capacity?: number

Capacity of the slot.

Memberof

RangeSlot

endDateTime?: string

End date time of slot in ISO 8601 format with precision of seconds.

Memberof

RangeSlot

startDateTime?: string

Start date time of slot in ISO 8601 format with precision of seconds.

Memberof

RangeSlot