The request body to update top-up address.
| Name | Type | Description | Notes |
|---|---|---|---|
| merchant_id | str | The merchant ID. | [optional] |
| token_id | str | The token ID, which is a unique identifier that specifies both the blockchain network and cryptocurrency token in the format `{CHAIN}_{TOKEN}`. Supported values include: - USDC: `ETH_USDC`, `ARBITRUM_USDCOIN`, `SOL_USDC`, `BASE_USDC`, `MATIC_USDC2`, `BSC_USDC` - USDT: `TRON_USDT`, `ETH_USDT`, `ARBITRUM_USDT`, `SOL_USDT`, `BASE_USDT`, `MATIC_USDT`, `BSC_USDT` | |
| custom_payer_id | str | A unique identifier assigned by the developer to track and identify individual payers in their system. |
from cobo_waas2.models.update_top_up_address import UpdateTopUpAddress
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTopUpAddress from a JSON string
update_top_up_address_instance = UpdateTopUpAddress.from_json(json)
# print the JSON string representation of the object
print(UpdateTopUpAddress.to_json())
# convert the object into a dict
update_top_up_address_dict = update_top_up_address_instance.to_dict()
# create an instance of UpdateTopUpAddress from a dict
update_top_up_address_from_dict = UpdateTopUpAddress.from_dict(update_top_up_address_dict)