Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 924 Bytes

Instance.md

File metadata and controls

31 lines (22 loc) · 924 Bytes

Instance

Properties

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

Example

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_form_dict = instance.from_dict(instance_dict)

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