Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

CustomEventWebsiteAlertRule

Properties

Name Type Description Notes
custom_event_name str

Example

from instana_client.models.custom_event_website_alert_rule import CustomEventWebsiteAlertRule

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

# convert the object into a dict
custom_event_website_alert_rule_dict = custom_event_website_alert_rule_instance.to_dict()
# create an instance of CustomEventWebsiteAlertRule from a dict
custom_event_website_alert_rule_from_dict = CustomEventWebsiteAlertRule.from_dict(custom_event_website_alert_rule_dict)

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