mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.1 KiB
1.1 KiB
NotificationThirdParty
Webhook notification.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| integration_id | str | Integration ID. | [optional] |
| integration_type | ThirdPartyIntegrationType | [optional] |
Example
from thousandeyes_sdk.alerts.models.notification_third_party import NotificationThirdParty
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationThirdParty from a JSON string
notification_third_party_instance = NotificationThirdParty.from_json(json)
# print the JSON string representation of the object
print(NotificationThirdParty.to_json())
# convert the object into a dict
notification_third_party_dict = notification_third_party_instance.to_dict()
# create an instance of NotificationThirdParty from a dict
notification_third_party_from_dict = NotificationThirdParty.from_dict(notification_third_party_dict)