Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

TSSKeyShareSignExtra

Properties

Name Type Description Notes
org OrgInfo [optional]
project MPCProject [optional]
vault MPCVault [optional]
wallet MPCWalletInfo [optional]
validity_key_share_holder_groups List[KeyShareHolderGroup] [optional]

Example

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)

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