Class BusinessRuleSchedule
Schedules business rules to run on a regular time frame.
Note: If schedules do not complete within 15 minutes, next execution will be skipped
Inheritance
BusinessRuleSchedule
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class BusinessRuleSchedule
Properties
Declaration
[JsonProperty("cronExpression", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string CronExpression { get; set; }
Property Value
Language specific description.
Declaration
[JsonProperty("description", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public TranslatedStringDictionary Description { get; set; }
Property Value
Doc type of items that should be loaded.
Declaration
[JsonProperty("docType", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public BusinessRuleTriggerDocType DocType { get; set; }
Property Value
Filter to apply when searching for items to load.
Declaration
[JsonProperty("filter", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public FilterBase Filter { get; set; }
Property Value
Indicates if schedule is enabled.
Declaration
[JsonProperty("isEnabled", Required = Required.Always)]
public bool IsEnabled { get; set; }
Property Value
Declaration
[JsonProperty("names", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public TranslatedStringDictionary Names { get; set; }
Property Value
IDs of business rules to run during schedule, regardless of trigger point
Declaration
[JsonProperty("ruleIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> RuleIds { get; set; }
Property Value
Search string to apply when searching for items to load.
Declaration
[JsonProperty("searchString", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string SearchString { get; set; }
Property Value
Methods
Declaration
public static BusinessRuleSchedule FromJson(string data)
Parameters
Returns