Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

TSSKeyGenExtra

Properties

Name Type Description Notes
org OrgInfo [optional]
project MPCProject [optional]
vault MPCVault [optional]
target_key_share_holder_group KeyShareHolderGroup [optional]
tss_request TSSRequest [optional]

Example

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)

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