Skip to main content

WorkflowExecutionHistory

Properties

NameTypeDescriptionNotes
definitionobjectThe workflow definition for the workflow execution[optional]
historyobjectList of workflow execution events for the given workflow execution[optional]
triggerobjectThe trigger that initiated the workflow execution[optional]
}

Example

from sailpoint.v2025.models.workflow_execution_history import WorkflowExecutionHistory

workflow_execution_history = WorkflowExecutionHistory(
definition=None,
history=None,
trigger=None
)

[Back to top]