Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

WebexTeamsWebhookIntegration

Properties

Name Type Description Notes
webhook_url str

Example

from instana_client.models.webex_teams_webhook_integration import WebexTeamsWebhookIntegration

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

# convert the object into a dict
webex_teams_webhook_integration_dict = webex_teams_webhook_integration_instance.to_dict()
# create an instance of WebexTeamsWebhookIntegration from a dict
webex_teams_webhook_integration_from_dict = WebexTeamsWebhookIntegration.from_dict(webex_teams_webhook_integration_dict)

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