ApiWorkflowStepDataModel represents a workflow step.
JSON representation |
---|
{ "id" : string , "creationTimeUnixTimeInMs" : string , "modificationTimeUnixTimeInMs" : string , "additionalProperties" : { string : string , ... } , "identifier" : string , "originalStepIdentifier" : string , "instanceName" : string , "name" : string , "integration" : string , "description" : string , "actionProvider" : string , "actionName" : string , "type" : enum ( |
Fields | |
---|---|
id
|
Required. Id is the unique identifier of the data model object. |
creationTimeUnixTimeInMs
|
Required. CreationTimeUnixTimeInMs is the creation time of the data model object. Represents DateTime CreationTimeUnixTimeInMs as unix time |
modificationTimeUnixTimeInMs
|
Required. ModificationTimeUnixTimeInMs is the modification time of the data model object. Represents DateTime ModificationTimeUnixTimeInMs as unix time |
additionalProperties
|
Optional. AdditionalProperties is a map of additional properties for the data model object. An object containing a list of |
identifier
|
Required. Identifier is the unique identifier of the step. |
originalStepIdentifier
|
Required. OriginalStepIdentifier is the original identifier of the step. |
instanceName
|
Required. InstanceName is the name of the instance. |
name
|
Required. Name is the name of the step. |
integration
|
Required. Integration is the integration of the step. |
description
|
Required. Description is the description of the step. |
actionProvider
|
Required. ActionProvider is the provider of the action. |
actionName
|
Required. ActionName is the name of the action. |
type
|
Required. Type is the type of the step. |
parameters[]
|
Optional. Parameters is a list of parameters for the step. |
debugData
|
Optional. DebugData is the debug data for the step. |
parentStepContainerId
|
Optional. ParentStepContainerId is the identifier of the parent step container. |
workflowIdentifier
|
Optional. WorkflowIdentifier is the identifier of the workflow. |
startLoopStepIdentifier
|
Optional. StartLoopStepIdentifier is the identifier of the start loop step. |
parallelActions[]
|
Optional. ParallelActions is a list of parallel actions for the step. |
isAutomatic
|
Optional. IsAutomatic indicates if the step is automatic. |
isSkippable
|
Optional. IsSkippable indicates if the step is skippable. |
autoSkipOnFailure
|
Optional. AutoSkipOnFailure indicates if the step should be skipped on failure. |
isDebugMockData
|
Optional. IsDebugMockData indicates if debug mock data is enabled for the step. |
isTouchedByAi
|
Optional. IsTouchedByAi indicates whether the step is touched by AI. |
WorkflowStepTypeValue
WorkflowStepTypeValue represents the type of a workflow step.
Enums | |
---|---|
WORKFLOW_STEP_TYPE_VALUE_UNSPECIFIED
|
The type is unspecified. |
ACTION
|
The type is action. |
MULTI_CHOICE_QUESTION
|
The type is multi choice question. |
PREVIOUS_ACTION
|
The type is previous action. |
CASE_DATA_CONDITION
|
The type is case data condition. |
CONDITION
|
The type is condition. |
BLOCK
|
The type is block. |
OUTPUT
|
The type is output. |
PARALLEL_ACTIONS_CONTAINER
|
The type is parallel actions container. |
FOR_EACH_START_LOOP
|
The type is for each start loop. |
FOR_EACH_END_LOOP
|
The type is for each end loop. |
FOR_EACH_LOOP_CONTAINER
|
The type is for each loop container. |
ApiWorkflowStepDebugDataModel
ApiWorkflowStepDebugDataModel represents debug data for a workflow step.
JSON representation |
---|
{
"id"
:
string
,
"creationTimeUnixTimeInMs"
:
string
,
"modificationTimeUnixTimeInMs"
:
string
,
"additionalProperties"
:
{
string
:
string
,
...
}
,
"originalWorkflowIdentifier"
:
string
,
"originalStepIdentifier"
:
string
,
"resultValue"
:
string
,
"resultJson"
:
string
,
"scopeEntitiesEnrichmentData"
:
[
{
object (
|
Fields | |
---|---|
id
|
Required. Id is the unique identifier of the data model object. |
creationTimeUnixTimeInMs
|
Required. CreationTimeUnixTimeInMs is the creation time of the data model object. Represents DateTime CreationTimeUnixTimeInMs as unix time |
modificationTimeUnixTimeInMs
|
Required. ModificationTimeUnixTimeInMs is the modification time of the data model object. Represents DateTime ModificationTimeUnixTimeInMs as unix time |
additionalProperties
|
Optional. AdditionalProperties is a map of additional properties for the data model object. An object containing a list of |
originalWorkflowIdentifier
|
Required. OriginalWorkflowIdentifier is the identifier of the original workflow. |
originalStepIdentifier
|
Required. OriginalStepIdentifier is the identifier of the original step. |
resultValue
|
Optional. ResultValue is the result value of the step. |
resultJson
|
Optional. ResultJson is the JSON result of the step. |
scopeEntitiesEnrichmentData[]
|
Optional. ScopeEntitiesEnrichmentData is a list of enrichment data for scope entities. |
ApiEnrichmentData
ApiEnrichmentData represents enrichment data.
JSON representation |
---|
{ "field" : string , "value" : string , "groupName" : string , "useInPlaybook" : boolean , "isCustom" : boolean } |
Fields | |
---|---|
field
|
Required. Field is the field name. |
value
|
Required. Value is the field value. |
groupName
|
Optional. GroupName is the name of the group. |
useInPlaybook
|
Optional. UseInPlaybook indicates if the enrichment data should be used in the playbook. |
isCustom
|
Optional. IsCustom indicates if the enrichment data is custom. |