Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

FlatErrorResponse.md

File metadata and controls

33 lines (24 loc) · 1.17 KB

FlatErrorResponse

An API Error response

Properties

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]

Example

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)

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