Class ScheduledTaskCreateDataV1
Create ScheduledTask model before introducing multiple reports per task
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models.Obsolete
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class ScheduledTaskCreateDataV1
Constructors
ScheduledTaskCreateDataV1()
Declaration
public ScheduledTaskCreateDataV1()
Properties
DocumentFormat
Obsolete from R3 2018. Use Reports instead.
Declaration
public string DocumentFormat { get; set; }
Property Value
System.String
|
Enabled
Specifies whether the scheduled task is either enabled or disabled.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
ExternalEmails
Specifies the emails of the external users to whom the report document should be sent.
Declaration
public List<string> ExternalEmails { get; set; }
Property Value
System.Collections.Generic.List<System.String>
|
MailBody
Specifies the mail template body.
Declaration
public string MailBody { get; set; }
Property Value
System.String
|
MailSubject
Specifies the mail template subject.
Declaration
public string MailSubject { get; set; }
Property Value
System.String
|
Name
Specifies the scheduled task name.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Parameters
Obsolete from R3 2018. Use Reports instead.
Declaration
public Dictionary<string, object> Parameters { get; set; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.Object>
|
RecurrenceRule
Specifies recurrence rule for the scheduled task.
Declaration
public RecurrenceRule RecurrenceRule { get; set; }
Property Value
RecurrenceRule
|
ReportId
Obsolete from R3 2018. Use Reports instead.
Declaration
public string ReportId { get; set; }
Property Value
System.String
|
StartDate
Specifies the start date of the scheduled task.
Declaration
public DateTime StartDate { get; set; }
Property Value
System.DateTime
|
SubscriberIds
Provides a list of IDs of the users subscribed to the data alert.
Declaration
public List<string> SubscriberIds { get; set; }
Property Value
System.Collections.Generic.List<System.String>
|