Only returned in the event of an error condition.
| Name | Type | Description | Notes |
|---|---|---|---|
| source | str | An element used to indicate the source of the issue causing this error. Must be one of * 'MDES' * 'INPUT' | [optional] |
| error_code | str | An error code generated by the gateway if the error occurs before reaching the MDES application. maxLength: 100 | [optional] |
| description | str | Description of the reason the operation failed. See API Response Errors | [optional] |
| reason_code | str | A reason code for the error that has occurred. | [optional] |
| recoverable | bool | Generated by the gateway to indicate if the request could presented again for processing. Either "TRUE" or "FALSE" | [optional] |
from openapi_client.models.error import Error
# TODO update the JSON string below
json = "{}"
# create an instance of Error from a JSON string
error_instance = Error.from_json(json)
# print the JSON string representation of the object
print(Error.to_json())
# convert the object into a dict
error_dict = error_instance.to_dict()
# create an instance of Error from a dict
error_from_dict = Error.from_dict(error_dict)