| Name | Type | Description | Notes |
|---|---|---|---|
| source_type | ContractCallSourceType | ||
| wallet_id | str | The wallet ID. | |
| address | str | The wallet address. | |
| mpc_used_key_share_holder_group | MpcSigningGroup | [optional] |
from cobo_waas2.models.mpc_contract_call_source import MpcContractCallSource
# TODO update the JSON string below
json = "{}"
# create an instance of MpcContractCallSource from a JSON string
mpc_contract_call_source_instance = MpcContractCallSource.from_json(json)
# print the JSON string representation of the object
print(MpcContractCallSource.to_json())
# convert the object into a dict
mpc_contract_call_source_dict = mpc_contract_call_source_instance.to_dict()
# create an instance of MpcContractCallSource from a dict
mpc_contract_call_source_from_dict = MpcContractCallSource.from_dict(mpc_contract_call_source_dict)