| Name |
Type |
Description |
Notes |
| error_reason |
str |
|
[optional] |
| message |
str |
|
[optional] |
| status |
bool |
|
[optional] [default to False] |
from hyperstack.models.error_response_model import ErrorResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of ErrorResponseModel from a JSON string
error_response_model_instance = ErrorResponseModel.from_json(json)
# print the JSON string representation of the object
print(ErrorResponseModel.to_json())
# convert the object into a dict
error_response_model_dict = error_response_model_instance.to_dict()
# create an instance of ErrorResponseModel from a dict
error_response_model_from_dict = ErrorResponseModel.from_dict(error_response_model_dict)
[Back to Model list] [Back to API list] [Back to README]