mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1000 B
1000 B
AlertMetricDetailStart
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| metrics | str | [optional] |
Example
from alerts.models.alert_metric_detail_start import AlertMetricDetailStart
# TODO update the JSON string below
json = "{}"
# create an instance of AlertMetricDetailStart from a JSON string
alert_metric_detail_start_instance = AlertMetricDetailStart.from_json(json)
# print the JSON string representation of the object
print(AlertMetricDetailStart.to_json())
# convert the object into a dict
alert_metric_detail_start_dict = alert_metric_detail_start_instance.to_dict()
# create an instance of AlertMetricDetailStart from a dict
alert_metric_detail_start_from_dict = AlertMetricDetailStart.from_dict(alert_metric_detail_start_dict)