Class ScheduledTaskCreateData
Provides information for creating a scheduled task.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class ScheduledTaskCreateData
Constructors
ScheduledTaskCreateData()
Declaration
public ScheduledTaskCreateData()
Properties
BaseUtcOffset
Gets or sets the UTC offset to the local timezone of the scheduled task author. Used for the mail templates date time type tokens.
Declaration
public double BaseUtcOffset { get; set; }
Property Value
System.Double
The value is in minutes. |
Enabled
Gets or sets whether the scheduled task is either enabled or disabled.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
ExternalEmails
Gets or sets 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>
|
ExternalUsersMailTemplate
Gets or sets the mail template for external users. Set to null to use the default template.
Declaration
public TaskMailTemplateModel ExternalUsersMailTemplate { get; set; }
Property Value
TaskMailTemplateModel
|
LocalUsersMailTemplate
Gets or sets the mail template for local users. Set to null to use the default template.
Declaration
public TaskMailTemplateModel LocalUsersMailTemplate { get; set; }
Property Value
TaskMailTemplateModel
|
Name
Gets or sets the scheduled task name.
Declaration
public string Name { get; set; }
Property Value
System.String
|
RecurrenceRule
Gets or sets recurrence rule for the scheduled task.
Declaration
public RecurrenceRule RecurrenceRule { get; set; }
Property Value
RecurrenceRule
|
Reports
Gets or sets the reports which are rendered by the scheduled task.
Declaration
public List<ScheduledTaskReport> Reports { get; set; }
Property Value
System.Collections.Generic.List<ScheduledTaskReport>
|
StartDate
Gets or sets the start date of the scheduled task in the author local time zone.
Declaration
[Obsolete("Use instead StartDateUtc, that accepts and returns DateTime value in UTC.")]
public DateTime StartDate { get; set; }
Property Value
System.DateTime
|
StartDateUtc
Gets or sets the start date of the scheduled task in UTC.
Declaration
public DateTime StartDateUtc { 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>
|