future contract information
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | company name | [optional] |
| chinese_name | str | company name in Chinese | [optional] |
| asset_class | str | [optional] | |
| contracts | List[StocksInnerContractsInner] | array of contracts from different exchanges | [optional] |
from ibkr_web_api.models.stocks_inner import StocksInner
# TODO update the JSON string below
json = "{}"
# create an instance of StocksInner from a JSON string
stocks_inner_instance = StocksInner.from_json(json)
# print the JSON string representation of the object
print(StocksInner.to_json())
# convert the object into a dict
stocks_inner_dict = stocks_inner_instance.to_dict()
# create an instance of StocksInner from a dict
stocks_inner_from_dict = StocksInner.from_dict(stocks_inner_dict)