Skip to main content

BaseAccessOwner

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.v3.models.base_access_owner import BaseAccessOwner

base_access_owner = BaseAccessOwner(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Support',
email='[email protected]'
)

[Back to top]