Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 997 Bytes

File metadata and controls

30 lines (21 loc) · 997 Bytes

NodeResponseModel

Properties

Name Type Description Notes
nodes List[NodeModel] [optional]
region str [optional]

Example

from hyperstack.models.node_response_model import NodeResponseModel

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

# convert the object into a dict
node_response_model_dict = node_response_model_instance.to_dict()
# create an instance of NodeResponseModel from a dict
node_response_model_from_dict = NodeResponseModel.from_dict(node_response_model_dict)

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