Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

BasicAddressRequest

Basic external wallet request with address information

Properties

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]

Example

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)

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