mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.5 KiB
1.5 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-workflow-execution-event | WorkflowExecutionEvent | WorkflowExecutionEvent | WorkflowExecutionEvent | pythonsdk |
|
/tools/sdk/python/v2025/models/workflow-execution-event |
|
WorkflowExecutionEvent
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | Enum [ 'WorkflowExecutionScheduled', 'WorkflowExecutionStarted', 'WorkflowExecutionCompleted', 'WorkflowExecutionFailed', 'WorkflowTaskScheduled', 'WorkflowTaskStarted', 'WorkflowTaskCompleted', 'WorkflowTaskFailed', 'ActivityTaskScheduled', 'ActivityTaskStarted', 'ActivityTaskCompleted', 'ActivityTaskFailed', 'StartChildWorkflowExecutionInitiated', 'ChildWorkflowExecutionStarted', 'ChildWorkflowExecutionCompleted', 'ChildWorkflowExecutionFailed' ] | The type of event | [optional] |
| timestamp | datetime | The date-time when the event occurred | [optional] |
| attributes | object | Additional attributes associated with the event | [optional] |
| } |
Example
from sailpoint.v2025.models.workflow_execution_event import WorkflowExecutionEvent
workflow_execution_event = WorkflowExecutionEvent(
type='WorkflowTaskScheduled',
timestamp='2022-02-07T20:13:31.640618296Z',
attributes={}
)