The data type of the event.
| 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. |
from cobo_waas2.models.webhook_event_data_type import WebhookEventDataType
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookEventDataType from a JSON string
webhook_event_data_type_instance = WebhookEventDataType.from_json(json)
# print the JSON string representation of the object
print(WebhookEventDataType.to_json())
# convert the object into a dict
webhook_event_data_type_dict = webhook_event_data_type_instance.to_dict()
# create an instance of WebhookEventDataType from a dict
webhook_event_data_type_from_dict = WebhookEventDataType.from_dict(webhook_event_data_type_dict)