| Name | Type | Description | Notes |
|---|---|---|---|
| org | OrgInfo | [optional] | |
| project | MPCProject | [optional] | |
| vault | MPCVault | [optional] | |
| source_key_share_holder_group | KeyShareHolderGroup | [optional] | |
| target_key_share_holder_group | KeyShareHolderGroup | [optional] | |
| tss_request | TSSRequest | [optional] |
from cobo_waas2.models.tss_key_reshare_extra import TSSKeyReshareExtra
# TODO update the JSON string below
json = "{}"
# create an instance of TSSKeyReshareExtra from a JSON string
tss_key_reshare_extra_instance = TSSKeyReshareExtra.from_json(json)
# print the JSON string representation of the object
print(TSSKeyReshareExtra.to_json())
# convert the object into a dict
tss_key_reshare_extra_dict = tss_key_reshare_extra_instance.to_dict()
# create an instance of TSSKeyReshareExtra from a dict
tss_key_reshare_extra_from_dict = TSSKeyReshareExtra.from_dict(tss_key_reshare_extra_dict)