Name |
Type |
Description |
Notes |
address |
str |
The contract's address (or xpub) of the wallet |
|
tag |
str |
The destination tag, for XRP wallets |
[optional] |
from fireblocks.models.add_contract_asset_request import AddContractAssetRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddContractAssetRequest from a JSON string
add_contract_asset_request_instance = AddContractAssetRequest.from_json(json)
# print the JSON string representation of the object
print(AddContractAssetRequest.to_json())
# convert the object into a dict
add_contract_asset_request_dict = add_contract_asset_request_instance.to_dict()
# create an instance of AddContractAssetRequest from a dict
add_contract_asset_request_from_dict = AddContractAssetRequest.from_dict(add_contract_asset_request_dict)
[Back to Model list] [Back to API list] [Back to README]