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. e.g. Gateway | [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] |
| details | bool | Always NULL, present for backwards compatiility | [optional] |
from openapi_client.models.gateway_error import GatewayError
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayError from a JSON string
gateway_error_instance = GatewayError.from_json(json)
# print the JSON string representation of the object
print(GatewayError.to_json())
# convert the object into a dict
gateway_error_dict = gateway_error_instance.to_dict()
# create an instance of GatewayError from a dict
gateway_error_from_dict = GatewayError.from_dict(gateway_error_dict)