Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

InternalInstancesResponse.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

InternalInstancesResponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
instances List[InternalInstanceFields] [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_form_dict = internal_instances_response.from_dict(internal_instances_response_dict)

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