Adaptable State Section for the Schedule Module

TypeScript
export interface ScheduleState extends
Extends

BaseState

Properties

PropertyDescription
IPushPullSchedulesSchedules connected to ipushpull Reports - available if ipushpull plugin is running
OpenFinSchedulesSchedules connected to OpenFin exports - available if OpenFin plugin is running
RemindersSchedules connected to Reminders - Alerts that fire at set times
ReportSchedulesSchedules connected to Reports (created in the Export function)

Property Details

IPushPullSchedules

Schedules connected to ipushpull Reports - available if ipushpull plugin is running

TypeScript
IPushPullSchedules?: IPushPullSchedule[];
Property Value

IPushPullSchedule[]

OpenFinSchedules

Schedules connected to OpenFin exports - available if OpenFin plugin is running

TypeScript
OpenFinSchedules?: OpenFinSchedule[];
Property Value

OpenFinSchedule[]

Reminders

Schedules connected to Reminders - Alerts that fire at set times

TypeScript
Reminders?: ReminderSchedule[];
Property Value

ReminderSchedule[]

ReportSchedules

Schedules connected to Reports (created in the Export function)

TypeScript
ReportSchedules?: ReportSchedule[];
Property Value

ReportSchedule[]