Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

ErrorEnvelope

API error response envelope containing metadata and an array of error details

Properties

Name Type Description Notes
meta Meta
data List[object] Empty data array when error occurs [optional]
error List[ErrorDetail] Array of error detail objects describing what went wrong

Example

from openapi_client.models.error_envelope import ErrorEnvelope

# TODO update the JSON string below
json = "{}"
# create an instance of ErrorEnvelope from a JSON string
error_envelope_instance = ErrorEnvelope.from_json(json)
# print the JSON string representation of the object
print(ErrorEnvelope.to_json())

# convert the object into a dict
error_envelope_dict = error_envelope_instance.to_dict()
# create an instance of ErrorEnvelope from a dict
error_envelope_from_dict = ErrorEnvelope.from_dict(error_envelope_dict)

[Back to Model list] [Back to API list] [Back to README]