Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.13 KB

File metadata and controls

34 lines (25 loc) · 2.13 KB

TokenizationUpdateBlocklistAddressesEstimateFeeParams

Properties

Name Type Description Notes
action TokenizationUpdateAddressAction
source TokenizationTokenOperationSource
addresses List[TokenizationUpdateBlocklistAddressesParamsAddressesInner] A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored.
operation_type TokenizationOperationType
token_id str The ID of the token.
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]

Example

from cobo_waas2.models.tokenization_update_blocklist_addresses_estimate_fee_params import TokenizationUpdateBlocklistAddressesEstimateFeeParams

# TODO update the JSON string below
json = "{}"
# create an instance of TokenizationUpdateBlocklistAddressesEstimateFeeParams from a JSON string
tokenization_update_blocklist_addresses_estimate_fee_params_instance = TokenizationUpdateBlocklistAddressesEstimateFeeParams.from_json(json)
# print the JSON string representation of the object
print(TokenizationUpdateBlocklistAddressesEstimateFeeParams.to_json())

# convert the object into a dict
tokenization_update_blocklist_addresses_estimate_fee_params_dict = tokenization_update_blocklist_addresses_estimate_fee_params_instance.to_dict()
# create an instance of TokenizationUpdateBlocklistAddressesEstimateFeeParams from a dict
tokenization_update_blocklist_addresses_estimate_fee_params_from_dict = TokenizationUpdateBlocklistAddressesEstimateFeeParams.from_dict(tokenization_update_blocklist_addresses_estimate_fee_params_dict)

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