| Name | Type | Description | Notes |
|---|---|---|---|
| org | OrgInfo | [optional] | |
| project | MPCProject | [optional] | |
| vault | MPCVault | [optional] | |
| wallet | MPCWalletInfo | [optional] | |
| validity_key_share_holder_groups | List[KeyShareHolderGroup] | [optional] |
from cobo_waas2.models.tss_key_share_sign_extra import TSSKeyShareSignExtra
# TODO update the JSON string below
json = "{}"
# create an instance of TSSKeyShareSignExtra from a JSON string
tss_key_share_sign_extra_instance = TSSKeyShareSignExtra.from_json(json)
# print the JSON string representation of the object
print(TSSKeyShareSignExtra.to_json())
# convert the object into a dict
tss_key_share_sign_extra_dict = tss_key_share_sign_extra_instance.to_dict()
# create an instance of TSSKeyShareSignExtra from a dict
tss_key_share_sign_extra_from_dict = TSSKeyShareSignExtra.from_dict(tss_key_share_sign_extra_dict)