Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

ZChatOpsIntegration

Properties

Name Type Description Notes
bearer_auth_token str
channels List[str] [optional]
zchat_ops_incidents_url str

Example

from instana_client.models.z_chat_ops_integration import ZChatOpsIntegration

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

# convert the object into a dict
z_chat_ops_integration_dict = z_chat_ops_integration_instance.to_dict()
# create an instance of ZChatOpsIntegration from a dict
z_chat_ops_integration_from_dict = ZChatOpsIntegration.from_dict(z_chat_ops_integration_dict)

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