Class DataTrigger
Namespace: Casewhere.Models
Assembly: Casewhere.Models.dll
Represents a data trigger. It defines a way Casewhere to execute a workflow when data changes.
public class DataTrigger : Entity, IIdentity
Inheritance
object ← Entity ← DataTrigger
Implements
IIdentity
Inherited Members
Entity.GetResourceName(), Entity.Id, Entity.Version, Entity.CreatedBy, Entity.CreatedAt, Entity.ModifiedBy, Entity.ModifiedAt, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()
Extension Methods
ObjectExtension.ConvertToBsonValue(object), EnumExtensions.DeepClone<DataTrigger>(DataTrigger)
Constructors
DataTrigger()
public DataTrigger()
Properties
DataClassId
Gets or sets the ID of the data class associated with the data trigger.
public Guid DataClassId { get; set; }
Property Value
DataTriggerVersion
public DataTriggerVersion DataTriggerVersion { get; set; }
Property Value
Delay
Gets or sets the delay in milliseconds for the data trigger.
public int Delay { get; set; }
Property Value
IsActive
Gets or sets a value indicating whether the data trigger is active.
public bool IsActive { get; set; }
Property Value
IsLocked
public bool IsLocked { get; set; }
Property Value
IsSynchronous
public bool IsSynchronous { get; set; }
Property Value
IsTrackingDataChanges
public bool IsTrackingDataChanges { get; set; }
Property Value
Name
Gets or sets the name of the data trigger.
public string Name { get; set; }
Property Value
Priority
Gets or sets the priority of the data trigger.
public WorkflowPriority Priority { get; set; }
Property Value
ProcessIds
Gets or sets the list of process IDs associated with the data trigger.
public IList<Guid> ProcessIds { get; set; }
Property Value
ProductId
public Guid ProductId { get; set; }
Property Value
Rule
Gets or sets the rule associated with the data trigger.
public string Rule { get; set; }
Property Value
Tags
public IList<string> Tags { get; set; }
Property Value
WorkflowDefinitionId
Gets or sets the ID of the workflow definition associated with the data trigger.
public Guid WorkflowDefinitionId { get; set; }
Property Value
Methods
GetResourceName()
Gets the display name of the entity.
public override string GetResourceName()
Returns
The display name of the entity.