Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.49 KB

ExchangeAccount.md

File metadata and controls

37 lines (28 loc) · 1.49 KB

ExchangeAccount

Properties

Name Type Description Notes
id str [optional]
type ExchangeType [optional]
name str Display name of the exchange account [optional]
status str [optional]
assets List[ExchangeAsset] [optional]
success bool Did succeed in retrieve balance data [optional]
trading_accounts List[ExchangeTradingAccount] [optional]
is_subaccount bool True if the account is a subaccount in an exchange [optional]
main_account_id str if the account is a sub-account, the ID of the main account [optional]

Example

from fireblocks.models.exchange_account import ExchangeAccount

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

# convert the object into a dict
exchange_account_dict = exchange_account_instance.to_dict()
# create an instance of ExchangeAccount from a dict
exchange_account_from_dict = ExchangeAccount.from_dict(exchange_account_dict)

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