Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

ServiceNowIntegration

Properties

Name Type Description Notes
auto_close_incidents bool [optional]
password str
service_now_url str
username str

Example

from instana_client.models.service_now_integration import ServiceNowIntegration

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

# convert the object into a dict
service_now_integration_dict = service_now_integration_instance.to_dict()
# create an instance of ServiceNowIntegration from a dict
service_now_integration_from_dict = ServiceNowIntegration.from_dict(service_now_integration_dict)

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