Name | Type | Description | Notes |
---|---|---|---|
instance | InstanceFields | [optional] | |
message | str | [optional] | |
status | bool | [optional] |
from hyperstack.models.instance import Instance
# TODO update the JSON string below
json = "{}"
# create an instance of Instance from a JSON string
instance_instance = Instance.from_json(json)
# print the JSON string representation of the object
print(Instance.to_json())
# convert the object into a dict
instance_dict = instance_instance.to_dict()
# create an instance of Instance from a dict
instance_from_dict = Instance.from_dict(instance_dict)