Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

TokenizationMpcOperationSource

Properties

Name Type Description Notes
source_type TokenizationOperationSourceType
wallet_id str The wallet ID.
address str The wallet address used to interact with the token contract.

Example

from cobo_waas2.models.tokenization_mpc_operation_source import TokenizationMpcOperationSource

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

# convert the object into a dict
tokenization_mpc_operation_source_dict = tokenization_mpc_operation_source_instance.to_dict()
# create an instance of TokenizationMpcOperationSource from a dict
tokenization_mpc_operation_source_from_dict = TokenizationMpcOperationSource.from_dict(tokenization_mpc_operation_source_dict)

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