Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.7 KB

File metadata and controls

33 lines (24 loc) · 1.7 KB

TransactionExchangeWalletSource

Information about the transaction source types Main and Sub. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. Switch between the tabs to display the properties for different transaction sources.

Properties

Name Type Description Notes
source_type TransactionSourceType
exchange_id ExchangeId
wallet_id str The wallet ID.
trading_account_type str The exchange trading account or a sub-wallet ID. [optional]

Example

from cobo_waas2.models.transaction_exchange_wallet_source import TransactionExchangeWalletSource

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

# convert the object into a dict
transaction_exchange_wallet_source_dict = transaction_exchange_wallet_source_instance.to_dict()
# create an instance of TransactionExchangeWalletSource from a dict
transaction_exchange_wallet_source_from_dict = TransactionExchangeWalletSource.from_dict(transaction_exchange_wallet_source_dict)

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