| Name | Type | Description | Notes |
|---|---|---|---|
| action | TokenizationUpdateAddressAction | ||
| source | TokenizationTokenOperationSource | ||
| addresses | List[TokenizationUpdateAllowlistAddressesParamsAddressesInner] | A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored. | |
| app_initiator | str | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional] |
| fee | TransactionRequestFee | ||
| request_id | str | The request ID that is used to track a transaction request. The request ID is provided by you and must be unique within your organization. | [optional] |
from cobo_waas2.models.tokenization_update_allowlist_addresses_request import TokenizationUpdateAllowlistAddressesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TokenizationUpdateAllowlistAddressesRequest from a JSON string
tokenization_update_allowlist_addresses_request_instance = TokenizationUpdateAllowlistAddressesRequest.from_json(json)
# print the JSON string representation of the object
print(TokenizationUpdateAllowlistAddressesRequest.to_json())
# convert the object into a dict
tokenization_update_allowlist_addresses_request_dict = tokenization_update_allowlist_addresses_request_instance.to_dict()
# create an instance of TokenizationUpdateAllowlistAddressesRequest from a dict
tokenization_update_allowlist_addresses_request_from_dict = TokenizationUpdateAllowlistAddressesRequest.from_dict(tokenization_update_allowlist_addresses_request_dict)