FormError
Properties
Name | Type | Description | Notes |
---|---|---|---|
key | str | Key is the technical key | [optional] |
messages | []ErrorMessage | Messages is a list of web.ErrorMessage items | [optional] |
value | object | Value 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
)