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

FeedSchedule

import type { FeedSchedule } from "https://googleapis.deno.dev/v1/dfareporting:v5.ts";

Contains the schedule of the dynamic feed.

interface FeedSchedule {
repeatValue?: bigint;
scheduleEnabled?: boolean;
startHour?: string;
startMinute?: string;
timeZone?: string;
}

§Properties

§
repeatValue?: bigint
[src]

Optional. The number of times the feed retransforms within one day. This is a required field if the schedule is enabled. Acceptable values are between 1 to 6, inclusive.

§
scheduleEnabled?: boolean
[src]

Optional. Whether the schedule is enabled.

§
startHour?: string
[src]

Optional. The hour of the day to start the feed. It is applicable if the repeat value is equal to 1. Default value is 0.

§
startMinute?: string
[src]

Optional. The minute of the hour to start the feed. It is applicable if the repeat value is equal to 1. Default value is 0.

§
timeZone?: string
[src]

Optional. The time zone to schedule the feed. It is applicable if the repeat value is equal to 1. Default value is "America/Los_Angeles".