Skip to main content

FormOwner

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]FormOwnerType value. IDENTITY FormOwnerTypeIdentity[optional]
idstrUnique identifier of the form's owner.[optional]
namestrName of the form's owner.[optional]
}

Example

from sailpoint.beta.models.form_owner import FormOwner

form_owner = FormOwner(
type='IDENTITY',
id='2c9180867624cbd7017642d8c8c81f67',
name='Grant Smith'
)

[Back to top]