ScheduleState
Adaptable State Section for the Schedule Module
TypeScript
export interface ScheduleState extendsExtends
Properties
| Property | Description |
|---|---|
| IPushPullSchedules | Schedules connected to ipushpull Reports - available if ipushpull plugin is running |
| OpenFinSchedules | Schedules connected to OpenFin exports - available if OpenFin plugin is running |
| Reminders | Schedules connected to Reminders - Alerts that fire at set times |
| ReportSchedules | Schedules 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
OpenFinSchedules
Schedules connected to OpenFin exports - available if OpenFin plugin is running
TypeScript
OpenFinSchedules?: OpenFinSchedule[];Property Value
Reminders
Schedules connected to Reminders - Alerts that fire at set times
TypeScript
Reminders?: ReminderSchedule[];Property Value
ReportSchedules
Schedules connected to Reports (created in the Export function)
TypeScript
ReportSchedules?: ReportSchedule[];