Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.55 KB

File metadata and controls

36 lines (27 loc) · 1.55 KB

TSSKeyShareSignEventData

Properties

Name Type Description Notes
data_type TSSEventDataType
request_id str The request ID. [optional]
request_type TSSRequestTypeEenum [optional]
request_status TSSStatus [optional]
extra_info str The extra info. [optional]
failed_reason str The failed reason. [optional]
request_detail TSSKeyShareSignRequest [optional]
result TSSKeyShareSignSignatures [optional]

Example

from cobo_waas2.models.tss_key_share_sign_event_data import TSSKeyShareSignEventData

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

# convert the object into a dict
tss_key_share_sign_event_data_dict = tss_key_share_sign_event_data_instance.to_dict()
# create an instance of TSSKeyShareSignEventData from a dict
tss_key_share_sign_event_data_from_dict = TSSKeyShareSignEventData.from_dict(tss_key_share_sign_event_data_dict)

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