Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

TokenizationContractCallParams

The information about the contract call.

Properties

Name Type Description Notes
source TokenizationTokenOperationSource [optional]
data TokenizationContractCallParamsData [optional]

Example

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)

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