Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

AddAssetToExternalWalletRequest.md

File metadata and controls

31 lines (22 loc) · 1.45 KB

AddAssetToExternalWalletRequest

Properties

Name Type Description Notes
address str The wallet's address (or xpub) of the wallet
tag str For XRP wallets, the destination tag; for EOS/XLM, the memo; for the fiat providers (BLINC by BCB Group), the Bank Transfer Description [optional]
additional_info AddAssetToExternalWalletRequestOneOf1AdditionalInfo

Example

from fireblocks.models.add_asset_to_external_wallet_request import AddAssetToExternalWalletRequest

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

# convert the object into a dict
add_asset_to_external_wallet_request_dict = add_asset_to_external_wallet_request_instance.to_dict()
# create an instance of AddAssetToExternalWalletRequest from a dict
add_asset_to_external_wallet_request_from_dict = AddAssetToExternalWalletRequest.from_dict(add_asset_to_external_wallet_request_dict)

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