Interface DateInterval

Date intervals that represent (possibly open) intervals in time

interface DateInterval {
    from: ApiDate;
    to: ApiDate;
}

Properties

Properties

from: ApiDate

Begin of the date interval.

If this is null, the interval has no begin date, so its left-open.

End of the date interval.

If this is null, the interval has no end date, so its right-open.