Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

TSSKeyShareSignRequest

Properties

Name Type Description Notes
node_id str The node ID of the key share holder. [optional]
task_id str The task ID. [optional]
details List[TSSKeyShareSignDetail] [optional]
biz_task_id str The business task ID. This field contains the key share sign request ID. [optional]

Example

from cobo_waas2.models.tss_key_share_sign_request import TSSKeyShareSignRequest

# TODO update the JSON string below
json = "{}"
# create an instance of TSSKeyShareSignRequest from a JSON string
tss_key_share_sign_request_instance = TSSKeyShareSignRequest.from_json(json)
# print the JSON string representation of the object
print(TSSKeyShareSignRequest.to_json())

# convert the object into a dict
tss_key_share_sign_request_dict = tss_key_share_sign_request_instance.to_dict()
# create an instance of TSSKeyShareSignRequest from a dict
tss_key_share_sign_request_from_dict = TSSKeyShareSignRequest.from_dict(tss_key_share_sign_request_dict)

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