| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | [optional] | |
| instances | List[InstanceFields] | [optional] | |
| message | str | [optional] | |
| page | int | [optional] | |
| page_size | int | [optional] | |
| status | bool | [optional] |
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_from_dict = Instances.from_dict(instances_dict)