The information about the contract call.
| Name | Type | Description | Notes |
|---|---|---|---|
| source | TokenizationTokenOperationSource | [optional] | |
| data | TokenizationContractCallParamsData | [optional] |
from cobo_waas2.models.tokenization_contract_call_params import TokenizationContractCallParams
# TODO update the JSON string below
json = "{}"
# create an instance of TokenizationContractCallParams from a JSON string
tokenization_contract_call_params_instance = TokenizationContractCallParams.from_json(json)
# print the JSON string representation of the object
print(TokenizationContractCallParams.to_json())
# convert the object into a dict
tokenization_contract_call_params_dict = tokenization_contract_call_params_instance.to_dict()
# create an instance of TokenizationContractCallParams from a dict
tokenization_contract_call_params_from_dict = TokenizationContractCallParams.from_dict(tokenization_contract_call_params_dict)