Skip to main content

IdentityAttributePreview

Properties

NameTypeDescriptionNotes
namestrName of the attribute that is being previewed.[optional]
valuestrValue that was derived during the preview.[optional]
previous_valuestrThe value of the attribute before the preview.[optional]
error_messages[]ErrorMessageDto[optional]
}

Example

from sailpoint.beta.models.identity_attribute_preview import IdentityAttributePreview

identity_attribute_preview = IdentityAttributePreview(
name='email',
value='[email protected]',
previous_value='[email protected]',
error_messages=[
sailpoint.beta.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]