Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 971 Bytes

NotFoundResponse.md

File metadata and controls

30 lines (21 loc) · 971 Bytes

NotFoundResponse

Properties

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

Example

from firefly_iii_client.models.not_found_response import NotFoundResponse

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

# convert the object into a dict
not_found_response_dict = not_found_response_instance.to_dict()
# create an instance of NotFoundResponse from a dict
not_found_response_form_dict = not_found_response.from_dict(not_found_response_dict)

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