Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 975 Bytes

File metadata and controls

29 lines (20 loc) · 975 Bytes

PagerdutyIntegration

Properties

Name Type Description Notes
service_integration_key str

Example

from instana_client.models.pagerduty_integration import PagerdutyIntegration

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

# convert the object into a dict
pagerduty_integration_dict = pagerduty_integration_instance.to_dict()
# create an instance of PagerdutyIntegration from a dict
pagerduty_integration_from_dict = PagerdutyIntegration.from_dict(pagerduty_integration_dict)

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