Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.35 KB

File metadata and controls

29 lines (20 loc) · 1.35 KB

IserverMarketdataConidUnsubscribeGet200Response

Properties

Name Type Description Notes
confirmed str success means market data was cancelled. [optional]

Example

from ibkr_web_api.models.iserver_marketdata_conid_unsubscribe_get200_response import IserverMarketdataConidUnsubscribeGet200Response

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

# convert the object into a dict
iserver_marketdata_conid_unsubscribe_get200_response_dict = iserver_marketdata_conid_unsubscribe_get200_response_instance.to_dict()
# create an instance of IserverMarketdataConidUnsubscribeGet200Response from a dict
iserver_marketdata_conid_unsubscribe_get200_response_from_dict = IserverMarketdataConidUnsubscribeGet200Response.from_dict(iserver_marketdata_conid_unsubscribe_get200_response_dict)

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