Enum TimerType
OptimaJet.Workflow.Core.Model.TimerType
Specifies how TimerDefinition.Value is interpreted to calculate a timer's execution time.
Namespace: OptimaJet.Workflow.Core.Model
public enum TimerTypeFields
Interval = 0 #Interprets TimerDefinition.Value as an interval added to the current time to calculate the timer's execution time.
Time = 1 #Interprets TimerDefinition.Value as a time of day and calculates the execution time for today, or for tomorrow if that time has already passed.
Date = 2 #Interprets TimerDefinition.Value as a calendar date and calculates the execution time as midnight on that date.
DateAndTime = 3 #Interprets TimerDefinition.Value as the exact date and time at which the timer executes.
Expression = 4 #Interprets TimerDefinition.Value as a C# expression whose result determines the timer's execution time.