A time window along with associated capacity in which the service can be performed.

Export

AppointmentSlot

interface AppointmentSlot {
    capacity?: number;
    endTime?: string;
    startTime?: string;
}

Properties

capacity?: number

Number of resources for which a slot can be reserved.

Memberof

AppointmentSlot

endTime?: string

Time window end time in ISO 8601 format.

Memberof

AppointmentSlot

startTime?: string

Time window start time in ISO 8601 format.

Memberof

AppointmentSlot