Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

File metadata and controls

34 lines (25 loc) · 1.33 KB

TSSKeyReshareExtra

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]