Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.88 KB

File metadata and controls

36 lines (27 loc) · 2.88 KB

TSSRequestWebhookEventData

Properties

Name Type Description Notes
data_type str The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
tss_request_id str The TSS request ID. [optional]
source_key_share_holder_group SourceGroup [optional]
target_key_share_holder_group_id str The target key share holder group ID. [optional]
type TSSRequestType [optional]
status TSSRequestStatus [optional]
description str The description of the TSS request. [optional]
created_timestamp int The TSS request's creation time in Unix timestamp format, measured in milliseconds. [optional]

Example

from cobo_waas2.models.tss_request_webhook_event_data import TSSRequestWebhookEventData

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

# convert the object into a dict
tss_request_webhook_event_data_dict = tss_request_webhook_event_data_instance.to_dict()
# create an instance of TSSRequestWebhookEventData from a dict
tss_request_webhook_event_data_from_dict = TSSRequestWebhookEventData.from_dict(tss_request_webhook_event_data_dict)

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