Skip to content

ExceptionTypeAndMessage

Properties

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

Example

from odm_api.models.exception_type_and_message import ExceptionTypeAndMessage

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

# convert the object into a dict
exception_type_and_message_dict = exception_type_and_message_instance.to_dict()
# create an instance of ExceptionTypeAndMessage from a dict
exception_type_and_message_from_dict = ExceptionTypeAndMessage.from_dict(exception_type_and_message_dict)
[Back to Model list] [Back to API list] [Back to README]