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.custom_forms.models.forminstancecreatedby import Forminstancecreatedby

forminstancecreatedby = Forminstancecreatedby(
id='00000000-0000-0000-0000-000000000000',
type='WORKFLOW_EXECUTION'
)

[Back to top]