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