Contains a start and end DateTime representing a time range.

Window

interface Window {
    editableUntil?: string;
    end: string;
    start: string;
}

Properties

editableUntil?: string

The timestamp at which this Window can no longer be edited.

Window

end: string

The end timestamp of the window.

Window

start: string

The start timestamp of the window.

Window