Basic external wallet request with address information
| Name | Type | Description | Notes |
|---|---|---|---|
| address | str | The wallet's address (or xpub) of the external 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] |
from fireblocks.models.basic_address_request import BasicAddressRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BasicAddressRequest from a JSON string
basic_address_request_instance = BasicAddressRequest.from_json(json)
# print the JSON string representation of the object
print(BasicAddressRequest.to_json())
# convert the object into a dict
basic_address_request_dict = basic_address_request_instance.to_dict()
# create an instance of BasicAddressRequest from a dict
basic_address_request_from_dict = BasicAddressRequest.from_dict(basic_address_request_dict)