The options defining a value to display in a DateFacet.

interface DateRangeRequest {
    end: string;
    endInclusive: boolean;
    start: string;
    state: FacetValueState;
}

Properties

end: string

The ending value for the date range, formatted as YYYY/MM/DD@HH:mm:ss or the Relative Date format "period-amount-unit".

endInclusive: boolean

Whether to include the end value in the range.

start: string

The starting value for the date range, formatted as YYYY/MM/DD@HH:mm:ss or the Relative Date format "period-amount-unit".

The current facet value state.