| Name |
Type |
Description |
Notes |
| message |
str |
|
[optional] |
| status |
bool |
|
[optional] |
| version |
str |
|
[optional] |
from hyperstack.models.get_version_response import GetVersionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetVersionResponse from a JSON string
get_version_response_instance = GetVersionResponse.from_json(json)
# print the JSON string representation of the object
print(GetVersionResponse.to_json())
# convert the object into a dict
get_version_response_dict = get_version_response_instance.to_dict()
# create an instance of GetVersionResponse from a dict
get_version_response_from_dict = GetVersionResponse.from_dict(get_version_response_dict)
[Back to Model list] [Back to API list] [Back to README]