Name |
Type |
Description |
Notes |
exception |
str |
|
[optional] |
message |
str |
|
[optional] |
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]