UNPKG

@viewdo/dxp-story-cli

Version:

DXP Story Management CLI

15 lines (14 loc) 698 B
import { DayOfWeek } from "./DayOfWeek"; import { LatencyStrategyType } from "./LatencyStrategyType"; export declare class ScheduleWindow { /** Which days are okay to send? Provide an array of DayOfWeek types. */ daysOfWeek: Array<DayOfWeek>; /** The local time-window start time for this action to fire within. */ startTime: string; /** The local time-window stop time for this action to fire within. */ endTime: string; /** The local time zone to use: http://www.xiirus.net/articles/article-_net-convert-datetime-from-one-timezone-to-another-7e44y.aspx */ timeZone: string; /** How should we handle late fires? */ latencyStrategy: LatencyStrategyType; }