Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 935 Bytes

File metadata and controls

31 lines (22 loc) · 935 Bytes

Instances

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
instances List[InstanceFields] [optional]

Example

from hyperstack.models.instances import Instances

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

# convert the object into a dict
instances_dict = instances_instance.to_dict()
# create an instance of Instances from a dict
instances_form_dict = instances.from_dict(instances_dict)

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