Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

File metadata and controls

31 lines (22 loc) · 1.37 KB

IserverSecdefSearchPostRequest

Properties

Name Type Description Notes
symbol str symbol or name to be searched
name bool should be true if the search is to be performed by name. false by default. [optional]
sec_type str If search is done by name, only the assets provided in this field will be returned. Currently, only STK is supported. [optional]

Example

from ibkr_web_api.models.iserver_secdef_search_post_request import IserverSecdefSearchPostRequest

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

# convert the object into a dict
iserver_secdef_search_post_request_dict = iserver_secdef_search_post_request_instance.to_dict()
# create an instance of IserverSecdefSearchPostRequest from a dict
iserver_secdef_search_post_request_from_dict = IserverSecdefSearchPostRequest.from_dict(iserver_secdef_search_post_request_dict)

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