Skip to main content

IdentityManagerRef

Identity's manager

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of identity's manager[optional]
idstrID of identity's manager[optional]
namestrHuman-readable display name of identity's manager[optional]
}

Example

from sailpoint.beta.models.identity_manager_ref import IdentityManagerRef

identity_manager_ref = IdentityManagerRef(
type='IDENTITY',
id='2c4180a46faadee4016fb4e018c20626',
name='Robert Robinson'
)

[Back to top]