Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 914 Bytes

File metadata and controls

30 lines (21 loc) · 914 Bytes

ResponseModel

Properties

Name Type Description Notes
message str [optional]
status bool [optional]

Example

from hyperstack.models.response_model import ResponseModel

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

# convert the object into a dict
response_model_dict = response_model_instance.to_dict()
# create an instance of ResponseModel from a dict
response_model_from_dict = ResponseModel.from_dict(response_model_dict)

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