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

NewStockRetriveResponse

Properties

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

Example

from hyperstack.models.new_stock_retrive_response import NewStockRetriveResponse

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

# convert the object into a dict
new_stock_retrive_response_dict = new_stock_retrive_response_instance.to_dict()
# create an instance of NewStockRetriveResponse from a dict
new_stock_retrive_response_from_dict = NewStockRetriveResponse.from_dict(new_stock_retrive_response_dict)

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