IdentityAttributePreview
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the attribute that is being previewed. | [optional] |
| value | str | Value that was derived during the preview. | [optional] |
| previous_value | str | The value of the attribute before the preview. | [optional] |
| error_messages | []ErrorMessageDto | List of error messages | [optional] |
| } |
Example
from sailpoint.v2025.models.identity_attribute_preview import IdentityAttributePreview
identity_attribute_preview = IdentityAttributePreview(
name='email',
value='email@mail.com',
previous_value='oldEmail@mail.com',
error_messages={locale=en-US, localeOrigin=DEFAULT, text=Error Message}
)