Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

NewStockResponse

Properties

Name Type Description Notes
models List[NewModelResponse] [optional]
region str [optional]
stock_type str [optional]

Example

from hyperstack.models.new_stock_response import NewStockResponse

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

# convert the object into a dict
new_stock_response_dict = new_stock_response_instance.to_dict()
# create an instance of NewStockResponse from a dict
new_stock_response_from_dict = NewStockResponse.from_dict(new_stock_response_dict)

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