Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

WebhookIntegration

Properties

Name Type Description Notes
headers List[str] [optional]
oauth OAuthIntegration [optional]
oauth_enabled bool [optional]
transformation_expression str [optional]
webhook_urls List[str]

Example

from instana_client.models.webhook_integration import WebhookIntegration

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

# convert the object into a dict
webhook_integration_dict = webhook_integration_instance.to_dict()
# create an instance of WebhookIntegration from a dict
webhook_integration_from_dict = WebhookIntegration.from_dict(webhook_integration_dict)

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