Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 997 Bytes

BadRequestResponse.md

File metadata and controls

30 lines (21 loc) · 997 Bytes

BadRequestResponse

Properties

Name Type Description Notes
exception str [optional]
message str [optional]

Example

from firefly_iii_client.models.bad_request_response import BadRequestResponse

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

# convert the object into a dict
bad_request_response_dict = bad_request_response_instance.to_dict()
# create an instance of BadRequestResponse from a dict
bad_request_response_form_dict = bad_request_response.from_dict(bad_request_response_dict)

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