Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

NodeStockResponseModel.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

NodeStockResponseModel

Properties

Name Type Description Notes
stocks List[NodeResponseModel] [optional]

Example

from hyperstack.models.node_stock_response_model import NodeStockResponseModel

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

# convert the object into a dict
node_stock_response_model_dict = node_stock_response_model_instance.to_dict()
# create an instance of NodeStockResponseModel from a dict
node_stock_response_model_from_dict = NodeStockResponseModel.from_dict(node_stock_response_model_dict)

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