Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

InternalExceptionResponse.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

InternalExceptionResponse

Properties

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

Example

from firefly_iii_client.models.internal_exception_response import InternalExceptionResponse

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

# convert the object into a dict
internal_exception_response_dict = internal_exception_response_instance.to_dict()
# create an instance of InternalExceptionResponse from a dict
internal_exception_response_form_dict = internal_exception_response.from_dict(internal_exception_response_dict)

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