Skip to main content

WorkflowExecutionEvent

Properties

NameTypeDescriptionNotes
typeEnum [ 'WorkflowExecutionScheduled', 'WorkflowExecutionStarted', 'WorkflowExecutionCompleted', 'WorkflowExecutionFailed', 'WorkflowTaskScheduled', 'WorkflowTaskStarted', 'WorkflowTaskCompleted', 'WorkflowTaskFailed', 'ActivityTaskScheduled', 'ActivityTaskStarted', 'ActivityTaskCompleted', 'ActivityTaskFailed', 'StartChildWorkflowExecutionInitiated', 'ChildWorkflowExecutionStarted', 'ChildWorkflowExecutionCompleted', 'ChildWorkflowExecutionFailed' ]The type of event[optional]
timestampdatetimeThe date-time when the event occurred[optional]
attributesobjectAdditional attributes associated with the event[optional]
}

Example

from sailpoint.v3.models.workflow_execution_event import WorkflowExecutionEvent

workflow_execution_event = WorkflowExecutionEvent(
type='WorkflowTaskScheduled',
timestamp='2022-02-07T20:13:31.640618296Z',
attributes={}
)

[Back to top]