Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 954 Bytes

ErrorStatus.md

File metadata and controls

30 lines (22 loc) · 954 Bytes

ErrorStatus

Properties

Name Type Description Notes
code int [optional] [readonly]
details str [optional] [readonly]
message str [optional] [readonly]

Example

from OmniCore.models.error_status import ErrorStatus

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

# convert the object into a dict
error_status_dict = error_status_instance.to_dict()
# create an instance of ErrorStatus from a dict
error_status_form_dict = error_status.from_dict(error_status_dict)

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