| Name | Type | Description | Notes |
|---|---|---|---|
| future_stocks | List[FutureNodeResponseModel] | [optional] |
from hyperstack.models.future_nodes_stock_model import FutureNodesStockModel
# TODO update the JSON string below
json = "{}"
# create an instance of FutureNodesStockModel from a JSON string
future_nodes_stock_model_instance = FutureNodesStockModel.from_json(json)
# print the JSON string representation of the object
print FutureNodesStockModel.to_json()
# convert the object into a dict
future_nodes_stock_model_dict = future_nodes_stock_model_instance.to_dict()
# create an instance of FutureNodesStockModel from a dict
future_nodes_stock_model_form_dict = future_nodes_stock_model.from_dict(future_nodes_stock_model_dict)