You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wallet's address or, for EOS wallets, the account name
tag
str
for XRP wallets, the destination tag; for EOS, the memo; for the fiat providers (BLINC by BCB Group), the Bank Transfer Description
[optional]
Example
fromfireblocks.models.create_internal_wallet_asset_requestimportCreateInternalWalletAssetRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateInternalWalletAssetRequest from a JSON stringcreate_internal_wallet_asset_request_instance=CreateInternalWalletAssetRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateInternalWalletAssetRequest.to_json())
# convert the object into a dictcreate_internal_wallet_asset_request_dict=create_internal_wallet_asset_request_instance.to_dict()
# create an instance of CreateInternalWalletAssetRequest from a dictcreate_internal_wallet_asset_request_from_dict=CreateInternalWalletAssetRequest.from_dict(create_internal_wallet_asset_request_dict)