The Instance Step Entity
Instance Step
Catalytic.SDK.Entities.InstanceStep
Common Properties
These are the most commonly used properties of an InstanceStep
.
Name | Type | Description |
---|---|---|
Id | Guid | The unique ID of the Instance Step |
InstanceId | Guid | The ID of the Instance Step belongs to |
WorkflowId | Guid | The ID of the Workflow the Step's Instance was started from |
Name | string | The descriptive name of the Step |
Description | string | A description of the Step, or instructions to be carried out during the Step |
AssignedTo | string | The email of the user or group that the Step is assigned to, if any. |
Constructors
InstanceStep()
Creates a new instance of the InstanceStep
class. Note that this does not create a new step within an Instance
on the platform. That is not yet supported in the SDK.
Methods
SetInput
CompleteStepRequest SetInput(string name, object value)
This method supports setting inputs in a chaining style and then passing those to an catalytic.Instances.CompleteStep()
call to complete the task with the specified inputs.
Updated about 3 years ago