thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/WebhookOperations.md
Miguel Pragosa 15ad3554e9
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#143)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-03-19 14:31:20 +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]