Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

GoogleChatIntegration

Properties

Name Type Description Notes
webhook_url str

Example

from instana_client.models.google_chat_integration import GoogleChatIntegration

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

# convert the object into a dict
google_chat_integration_dict = google_chat_integration_instance.to_dict()
# create an instance of GoogleChatIntegration from a dict
google_chat_integration_from_dict = GoogleChatIntegration.from_dict(google_chat_integration_dict)

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