Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

FutureNodesStockModel

Properties

Name Type Description Notes
future_stocks List[FutureNodeResponseModel] [optional]

Example

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)

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