| Name | Type | Description | Notes |
|---|---|---|---|
| region | str | [optional] | |
| nodes | List[FutureNodeModel] | [optional] |
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)