Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

AbstractIntegration

Properties

Name Type Description Notes
id str Unique ID of the returned Alert Channel
kind str The type of the Alerting Channel.
name str The name of the Alerting Channel.

Example

from instana_client.models.abstract_integration import AbstractIntegration

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

# convert the object into a dict
abstract_integration_dict = abstract_integration_instance.to_dict()
# create an instance of AbstractIntegration from a dict
abstract_integration_from_dict = AbstractIntegration.from_dict(abstract_integration_dict)

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