Defines when an action will be run - either one-off or recurring

TypeScript
export interface

Properties

PropertyDescription
DaysOfWeekDays on which Schedule will run
HourHour the Schedule will run
MinuteMinute the Schedule will run
OneOffDateA one off date on which the Schedule will run

Property Details

DaysOfWeek

Days on which Schedule will run

TypeScript
DaysOfWeek?: Weekdays;
Property Value

Weekdays

Hour

Hour the Schedule will run

TypeScript
Hour: number;
Property Value

number

Minute

Minute the Schedule will run

TypeScript
Minute: number;
Property Value

number

OneOffDate

A one off date on which the Schedule will run

TypeScript
OneOffDate?: string;
Property Value

string