Skip to main content

AccessAppsOwner

Owner's identity.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Owner's DTO type.[optional]
idstrOwner's identity ID.[optional]
namestrOwner's display name.[optional]
emailstrOwner's email.[optional]
}

Example

from sailpoint.v2024.models.access_apps_owner import AccessAppsOwner

access_apps_owner = AccessAppsOwner(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='John Doe',
email='[email protected]'
)

[Back to top]