Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

CreateInternalWalletAssetRequest.md

File metadata and controls

30 lines (21 loc) · 1.33 KB

CreateInternalWalletAssetRequest

Properties

Name Type Description Notes
address str 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

from fireblocks.models.create_internal_wallet_asset_request import CreateInternalWalletAssetRequest

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

# convert the object into a dict
create_internal_wallet_asset_request_dict = create_internal_wallet_asset_request_instance.to_dict()
# create an instance of CreateInternalWalletAssetRequest from a dict
create_internal_wallet_asset_request_from_dict = CreateInternalWalletAssetRequest.from_dict(create_internal_wallet_asset_request_dict)

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