AvailabilityRecord to represent the capacity of a resource over a time range.

Export

AvailabilityRecord

interface AvailabilityRecord {
    capacity?: number;
    endTime: string;
    recurrence?: Recurrence;
    startTime: string;
}

Properties

capacity?: number

Signifies the capacity of a resource which is available.

Memberof

AvailabilityRecord

endTime: string

Denotes the time till when the resource is available in a day in ISO-8601 format.

Memberof

AvailabilityRecord

recurrence?: Recurrence

Memberof

AvailabilityRecord

startTime: string

Denotes the time from when the resource is available in a day in ISO-8601 format.

Memberof

AvailabilityRecord