The time range.

TimeRange

interface TimeRange {
    end?: string;
    start?: string;
}

Properties

Properties

end?: string

The end date and time. This must come after the value of start. This defaults to the next business day from the start.

TimeRange

start?: string

The start date and time. This defaults to the current date and time.

TimeRange