You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromibkr_web_api.models.iserver_secdef_search_post_requestimportIserverSecdefSearchPostRequest# TODO update the JSON string belowjson="{}"# create an instance of IserverSecdefSearchPostRequest from a JSON stringiserver_secdef_search_post_request_instance=IserverSecdefSearchPostRequest.from_json(json)
# print the JSON string representation of the objectprint(IserverSecdefSearchPostRequest.to_json())
# convert the object into a dictiserver_secdef_search_post_request_dict=iserver_secdef_search_post_request_instance.to_dict()
# create an instance of IserverSecdefSearchPostRequest from a dictiserver_secdef_search_post_request_from_dict=IserverSecdefSearchPostRequest.from_dict(iserver_secdef_search_post_request_dict)