Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

ExchangeTradingAccount.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

ExchangeTradingAccount

Properties

Name Type Description Notes
type str [optional]
name str [optional]
assets List[ExchangeAsset] [optional]

Example

from fireblocks.models.exchange_trading_account import ExchangeTradingAccount

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

# convert the object into a dict
exchange_trading_account_dict = exchange_trading_account_instance.to_dict()
# create an instance of ExchangeTradingAccount from a dict
exchange_trading_account_from_dict = ExchangeTradingAccount.from_dict(exchange_trading_account_dict)

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