Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RecurringTimeWindow

import type { RecurringTimeWindow } from "https://googleapis.deno.dev/v1/datafusion:v1.ts";

Represents an arbitrary window of time that recurs.

interface RecurringTimeWindow {
recurrence?: string;
window?: TimeWindow;
}

§Properties

§
recurrence?: string
[src]

Required. An RRULE with format RFC-5545 for how this window reccurs. They go on for the span of time between the start and end time. The only supported FREQ value is "WEEKLY". To have something repeat every weekday, use: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR". This specifies how frequently the window starts. To have a 9 am - 5 pm UTC-4 window every weekday, use something like: start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR

§

Required. The window representing the start and end time of recurrences. This field ignores the date components of the provided timestamps. Only the time of day and duration between start and end time are relevant.