ReportSchedule

A timed export for a report — when to run, format and destination

TypeScript
export interface ReportSchedule extends
Extends

SuspendableObject

Properties

PropertyTypeDescription
ExportDestinationExportDestinationTypeDestination of Report to run on Schedule
NamestringUnique display name for this scheduled report
ReportFormatReportFormatTypeFormat of Report to run on Schedule
ReportNameReportNameTypeName of Report to export
ScheduleScheduleWhen the export should run
IsReadOnlybooleanSets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedbooleanSuspends (i.e. turns off) an Adaptable Object

Property Details

ExportDestination

Destination of Report to run on Schedule

TypeScript
ExportDestination?: ExportDestinationType;
Property Value

ExportDestinationType

Name

Unique display name for this scheduled report

TypeScript
Name: string;
Property Value

string

ReportFormat

Format of Report to run on Schedule

TypeScript
ReportFormat: ReportFormatType;
Property Value

ReportFormatType

ReportName

Name of Report to export

TypeScript
ReportName: ReportNameType;
Property Value

ReportNameType

Schedule

When the export should run

TypeScript
Schedule: Schedule;
Property Value

Schedule

IsSuspended

Inherited from SuspendableObject

Suspends (i.e. turns off) an Adaptable Object

TypeScript
IsSuspended?: boolean;
Property Value

boolean

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean