Initializes a new instance of the WorkflowCreationData type.
Namespace: Scanjour.Workflow4.Base
Assembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 21.3.0.0 (21.3.0.0)
Syntax
public WorkflowCreationData( WorkflowType workflowType, string workflowTitle, string workflowParent, string processId, string description, string register, string registerKey, DateTime dueDate, IDictionary<string, Object> arguments, string access = "", Importance importance = Importance.Normal, string workflowOwner = "", Nullable<DateTime> created = null, string wfId = "" )
Parameters
- workflowType
- Type: Scanjour.Workflow4.BaseWorkflowType
The WorkflowType of the workflow instance to be created - workflowTitle
- Type: SystemString
The title of the workflow instance to be created - workflowParent
- Type: SystemString
The parent workflow instance (specify null or the empty string if there is no parent) - processId
- Type: SystemString
The process id (specify null or the empty string if there is no process) - description
- Type: SystemString
A description of the workflow instance to be created - register
- Type: SystemString
The SOM register with which the workflow instance will be associated (allowed values: "file", "record", "contact" or "address") - registerKey
- Type: SystemString
The key of the register individual with which the workflow instance will be associated - dueDate
- Type: SystemDateTime
The requested due DateTime of the workflow instance. If no specific end, specify DateTime.MinValue - arguments
- Type: System.Collections.GenericIDictionaryString, Object
The input dictionary for setting the InArguments of the workflow instance - access (Optional)
- Type: SystemString
The workflow access restriction. - importance (Optional)
- Type: Scanjour.Workflow4.BaseImportance
The importance of the workflow. - workflowOwner (Optional)
- Type: SystemString
The name of the user who is the owner of the workflow. - created (Optional)
- Type: SystemNullableDateTime
The time of creation. - wfId (Optional)
- Type: SystemString
The id of the workflow.
See Also