Skip to main content

FormSubmittedCreatedBy

Origin of the form creation.

Properties

NameTypeDescriptionNotes
typeEnum [ 'WORKFLOW_EXECUTION', 'SOURCE' ]Form creation origin's type.[required]
idstrUnique identifier of the origin of the form creation.[required]
}

Example

from sailpoint.triggers.models.form_submitted_created_by import FormSubmittedCreatedBy

form_submitted_created_by = FormSubmittedCreatedBy(
type='WORKFLOW_EXECUTION',
id='2c9180845d1edece015d27a9717c3e19'
)

[Back to top]