Skip to main content

WorkgroupDtoOwner

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Owner's DTO type.[optional]
idstrOwner's identity ID.[optional]
namestrOwner's name.[optional]
display_namestrThe display name of the identity[optional] [readonly]
email_addressstrThe primary email address of the identity[optional] [readonly]
}

Example

from sailpoint.v2024.models.workgroup_dto_owner import WorkgroupDtoOwner

workgroup_dto_owner = WorkgroupDtoOwner(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Support',
display_name='Support',
email_address='[email protected]'
)

[Back to top]