Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/IdentityReference.md
2025-02-20 12:59:19 -05:00

966 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-identity-reference IdentityReference IdentityReference IdentityReference pythonsdk
python
Python
sdk
IdentityReference
BetaIdentityReference
/tools/sdk/python/beta/models/identity-reference
SDK
Software Development Kit
IdentityReference
BetaIdentityReference

IdentityReference

The manager for the identity.

Properties

Name Type Description Notes
type DtoType [optional]
id str Identity id [optional]
name str Human-readable display name of identity. [optional]
}

Example

from sailpoint.beta.models.identity_reference import IdentityReference

identity_reference = IdentityReference(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Thomas Edison'
)

[Back to top]