Skip to main content

WorkflowAllOfCreator

Workflow creator's identity.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Workflow creator's DTO type.[optional]
idstrWorkflow creator's identity ID.[optional]
namestrWorkflow creator's display name.[optional]
}

Example

from sailpoint.v3.models.workflow_all_of_creator import WorkflowAllOfCreator

workflow_all_of_creator = WorkflowAllOfCreator(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]