Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.48 KB

File metadata and controls

36 lines (27 loc) · 1.48 KB

TSSKeyReshareEventData

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 TSSKeyReshareRequest [optional]
result TSSGroup [optional]

Example

from cobo_waas2.models.tss_key_reshare_event_data import TSSKeyReshareEventData

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

# convert the object into a dict
tss_key_reshare_event_data_dict = tss_key_reshare_event_data_instance.to_dict()
# create an instance of TSSKeyReshareEventData from a dict
tss_key_reshare_event_data_from_dict = TSSKeyReshareEventData.from_dict(tss_key_reshare_event_data_dict)

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