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

1.5 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
v2024-identity-attribute-preview IdentityAttributePreview IdentityAttributePreview IdentityAttributePreview pythonsdk
python
Python
sdk
IdentityAttributePreview
V2024IdentityAttributePreview
/tools/sdk/python/v2024/models/identity-attribute-preview
SDK
Software Development Kit
IdentityAttributePreview
V2024IdentityAttributePreview

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 [optional]
}

Example

from sailpoint.v2024.models.identity_attribute_preview import IdentityAttributePreview

identity_attribute_preview = IdentityAttributePreview(
name='email',
value='email@mail.com',
previous_value='oldEmail@mail.com',
error_messages=[
                    sailpoint.v2024.models.error_message_dto.ErrorMessageDto(
                        locale = 'en-US', 
                        locale_origin = 'DEFAULT', 
                        text = 'The request was syntactically correct but its content is semantically invalid.', )
                    ]
)

[Back to top]