An API Error response
Name | Type | Description | Notes |
---|---|---|---|
code | str | A corresponding code for this error | |
message | str | A printable message for this error | |
id | str | An unique error identifier generated for the request | [optional] |
param | str | The related parameter that caused the error | [optional] |
from flat_api.models.flat_error_response import FlatErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FlatErrorResponse from a JSON string
flat_error_response_instance = FlatErrorResponse.from_json(json)
# print the JSON string representation of the object
print FlatErrorResponse.to_json()
# convert the object into a dict
flat_error_response_dict = flat_error_response_instance.to_dict()
# create an instance of FlatErrorResponse from a dict
flat_error_response_form_dict = flat_error_response.from_dict(flat_error_response_dict)