Skip to main content

FormInstanceCreatedBy

Properties

NameTypeDescriptionNotes
idstrID is a unique identifier[optional]
typeEnum [ 'WORKFLOW_EXECUTION', 'SOURCE' ]Type is a form instance created by type enum value WORKFLOW_EXECUTION FormInstanceCreatedByTypeWorkflowExecution SOURCE FormInstanceCreatedByTypeSource[optional]
}

Example

from sailpoint.v2024.models.form_instance_created_by import FormInstanceCreatedBy

form_instance_created_by = FormInstanceCreatedBy(
id='00000000-0000-0000-0000-000000000000',
type='WORKFLOW_EXECUTION'
)

[Back to top]