Skip to main content

FormError

Properties

NameTypeDescriptionNotes
keystrKey is the technical key[optional]
messages[]ErrorMessageMessages is a list of web.ErrorMessage items[optional]
valueobjectValue is the value associated with a Key[optional]
}

Example

from sailpoint.v2024.models.form_error import FormError

form_error = FormError(
key='department',
messages=[
sailpoint.v2024.models.error_message_is_the_standard_api_error_response_message_type/.ErrorMessage is the standard API error response message type.(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'This is an error', )
],
value=Engineering
)

[Back to top]