Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

StatusCodeMobileAppAlertRule

Properties

Name Type Description Notes
metric_name str
operator str
value str

Example

from instana_client.models.status_code_mobile_app_alert_rule import StatusCodeMobileAppAlertRule

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

# convert the object into a dict
status_code_mobile_app_alert_rule_dict = status_code_mobile_app_alert_rule_instance.to_dict()
# create an instance of StatusCodeMobileAppAlertRule from a dict
status_code_mobile_app_alert_rule_from_dict = StatusCodeMobileAppAlertRule.from_dict(status_code_mobile_app_alert_rule_dict)

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