| Name | Type | Description | Notes |
|---|---|---|---|
| type | TokenizationContractCallType | [optional] | |
| calldata | str | The data that is used to invoke a specific function or method within the specified contract at the destination address. | |
| value | str | The transfer amount. For example, if you trade 1.5 ETH, then the value is `1.5`. | [optional] |
| instructions | List[SolContractCallInstruction] |
from cobo_waas2.models.tokenization_contract_call_params_data import TokenizationContractCallParamsData
# TODO update the JSON string below
json = "{}"
# create an instance of TokenizationContractCallParamsData from a JSON string
tokenization_contract_call_params_data_instance = TokenizationContractCallParamsData.from_json(json)
# print the JSON string representation of the object
print(TokenizationContractCallParamsData.to_json())
# convert the object into a dict
tokenization_contract_call_params_data_dict = tokenization_contract_call_params_data_instance.to_dict()
# create an instance of TokenizationContractCallParamsData from a dict
tokenization_contract_call_params_data_from_dict = TokenizationContractCallParamsData.from_dict(tokenization_contract_call_params_data_dict)