Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

FutureNodeResponseModel

Properties

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

Example

from hyperstack.models.future_node_response_model import FutureNodeResponseModel

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

# convert the object into a dict
future_node_response_model_dict = future_node_response_model_instance.to_dict()
# create an instance of FutureNodeResponseModel from a dict
future_node_response_model_form_dict = future_node_response_model.from_dict(future_node_response_model_dict)

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