Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

StatusCodeWebsiteAlertRule

Properties

Name Type Description Notes
operator str
value str

Example

from instana_client.models.status_code_website_alert_rule import StatusCodeWebsiteAlertRule

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

# convert the object into a dict
status_code_website_alert_rule_dict = status_code_website_alert_rule_instance.to_dict()
# create an instance of StatusCodeWebsiteAlertRule from a dict
status_code_website_alert_rule_from_dict = StatusCodeWebsiteAlertRule.from_dict(status_code_website_alert_rule_dict)

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