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

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
identity-reference-with-name-and-email IdentityReferenceWithNameAndEmail IdentityReferenceWithNameAndEmail IdentityReferenceWithNameAndEmail pythonsdk
python
Python
sdk
IdentityReferenceWithNameAndEmail
IdentityReferenceWithNameAndEmail
/tools/sdk/python/v3/models/identity-reference-with-name-and-email
SDK
Software Development Kit
IdentityReferenceWithNameAndEmail
IdentityReferenceWithNameAndEmail

IdentityReferenceWithNameAndEmail

Properties

Name Type Description Notes
type str The type can only be IDENTITY. This is read-only. [optional]
id str Identity ID. [optional]
name str Identity's human-readable display name. This is read-only. [optional]
email str Identity's email address. This is read-only. [optional]
}

Example

from sailpoint.v3.models.identity_reference_with_name_and_email import IdentityReferenceWithNameAndEmail

identity_reference_with_name_and_email = IdentityReferenceWithNameAndEmail(
type='IDENTITY',
id='5168015d32f890ca15812c9180835d2e',
name='Alison Ferguso',
email='alison.ferguso@identitysoon.com'
)

[Back to top]