| Name | Type | Description | Notes |
|---|---|---|---|
| org | OrgInfo | [optional] | |
| project | MPCProject | [optional] | |
| vault | MPCVault | [optional] | |
| wallet | MPCWalletInfo | [optional] | |
| signer_key_share_holder_group | KeyShareHolderGroup | [optional] | |
| source_addresses | List[AddressInfo] | [optional] | |
| transaction | Transaction | [optional] |
from cobo_waas2.models.tss_key_sign_extra import TSSKeySignExtra
# TODO update the JSON string below
json = "{}"
# create an instance of TSSKeySignExtra from a JSON string
tss_key_sign_extra_instance = TSSKeySignExtra.from_json(json)
# print the JSON string representation of the object
print(TSSKeySignExtra.to_json())
# convert the object into a dict
tss_key_sign_extra_dict = tss_key_sign_extra_instance.to_dict()
# create an instance of TSSKeySignExtra from a dict
tss_key_sign_extra_from_dict = TSSKeySignExtra.from_dict(tss_key_sign_extra_dict)