mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
974 B
974 B
AlertMetricDetailEnd
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| metrics | str | [optional] |
Example
from alerts.models.alert_metric_detail_end import AlertMetricDetailEnd
# TODO update the JSON string below
json = "{}"
# create an instance of AlertMetricDetailEnd from a JSON string
alert_metric_detail_end_instance = AlertMetricDetailEnd.from_json(json)
# print the JSON string representation of the object
print(AlertMetricDetailEnd.to_json())
# convert the object into a dict
alert_metric_detail_end_dict = alert_metric_detail_end_instance.to_dict()
# create an instance of AlertMetricDetailEnd from a dict
alert_metric_detail_end_from_dict = AlertMetricDetailEnd.from_dict(alert_metric_detail_end_dict)