Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

TokenizationWeb3OperationSource

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_web3_operation_source import TokenizationWeb3OperationSource

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

# convert the object into a dict
tokenization_web3_operation_source_dict = tokenization_web3_operation_source_instance.to_dict()
# create an instance of TokenizationWeb3OperationSource from a dict
tokenization_web3_operation_source_from_dict = TokenizationWeb3OperationSource.from_dict(tokenization_web3_operation_source_dict)

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