Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

InternalInstancesResponse

Properties

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

Example

from hyperstack.models.internal_instances_response import InternalInstancesResponse

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

# convert the object into a dict
internal_instances_response_dict = internal_instances_response_instance.to_dict()
# create an instance of InternalInstancesResponse from a dict
internal_instances_response_from_dict = InternalInstancesResponse.from_dict(internal_instances_response_dict)

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