Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 963 Bytes

File metadata and controls

29 lines (20 loc) · 963 Bytes

Office365Integration

Properties

Name Type Description Notes
webhook_url str

Example

from instana_client.models.office365_integration import Office365Integration

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

# convert the object into a dict
office365_integration_dict = office365_integration_instance.to_dict()
# create an instance of Office365Integration from a dict
office365_integration_from_dict = Office365Integration.from_dict(office365_integration_dict)

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