Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

File metadata and controls

34 lines (25 loc) · 1.47 KB

IserverAccountAccountIdAlertPost200Response

Properties

Name Type Description Notes
request_id int [optional]
order_id int [optional]
success bool [optional]
text str [optional]
order_status str [optional]
warning_message str [optional]

Example

from ibkr_web_api.models.iserver_account_account_id_alert_post200_response import IserverAccountAccountIdAlertPost200Response

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

# convert the object into a dict
iserver_account_account_id_alert_post200_response_dict = iserver_account_account_id_alert_post200_response_instance.to_dict()
# create an instance of IserverAccountAccountIdAlertPost200Response from a dict
iserver_account_account_id_alert_post200_response_from_dict = IserverAccountAccountIdAlertPost200Response.from_dict(iserver_account_account_id_alert_post200_response_dict)

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