Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

FutureNodeStockModel

Properties

Name Type Description Notes
expected_amount int
id int [optional] [readonly]
name str [optional]

Example

from hyperstack.models.future_node_stock_model import FutureNodeStockModel

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

# convert the object into a dict
future_node_stock_model_dict = future_node_stock_model_instance.to_dict()
# create an instance of FutureNodeStockModel from a dict
future_node_stock_model_from_dict = FutureNodeStockModel.from_dict(future_node_stock_model_dict)

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