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] |
str | Identity's email address. This is read-only. | [optional] | |
} |
Example
from sailpoint.beta.models.identity_reference_with_name_and_email import IdentityReferenceWithNameAndEmail
identity_reference_with_name_and_email = IdentityReferenceWithNameAndEmail(
type='IDENTITY',
id='5168015d32f890ca15812c9180835d2e',
name='Alison Ferguso',
email='[email protected]'
)