Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.03 KB

File metadata and controls

44 lines (35 loc) · 2.03 KB

Account

account information

Properties

Name Type Description Notes
id str The account identification value [optional]
account_id str The account number [optional]
account_van str The accountAlias [optional]
account_title str Title of the account [optional]
display_name str Whichever value is not null in this priority [optional]
account_alias str User customizable account alias. Refer to Configure Account Alias for details. [optional]
account_status float When the account was opened in unix time. [optional]
currency str Base currency of the account. [optional]
type str Account Type [optional]
trading_type str UNI - Deprecated property [optional]
faclient bool If an account is a sub-account to a Financial Advisor. [optional]
clearing_status str Status of the Account * O = Open * P or N = Pending * A = Abandoned * R = Rejected * C = Closed [optional]
covestor bool Is a Covestor Account [optional]
parent AccountParent [optional]
desc str Formatted "accountId - accountAlias" [optional]

Example

from ibkr_web_api.models.account import Account

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

# convert the object into a dict
account_dict = account_instance.to_dict()
# create an instance of Account from a dict
account_from_dict = Account.from_dict(account_dict)

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