thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/WebhookOperations.md
2026-02-03 09:52:22 +00:00

1.0 KiB

WebhookOperations

Properties

Name Type Description Notes
items **List[WebhookOperation]** [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.connectors.models.webhook_operations import WebhookOperations

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

# convert the object into a dict
webhook_operations_dict = webhook_operations_instance.to_dict()
# create an instance of WebhookOperations from a dict
webhook_operations_from_dict = WebhookOperations.from_dict(webhook_operations_dict)

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