Response model for listing alerts.
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[AlertResponse] | List of alerts | |
| pagination | PaginationResponse | Pagination information | |
| total_count | int | Total number of alerts matching query | |
| stats | AlertListStats | Aggregate statistics across all alerts in the result | [optional] |
from mixpeek.models.list_alerts_response import ListAlertsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListAlertsResponse from a JSON string
list_alerts_response_instance = ListAlertsResponse.from_json(json)
# print the JSON string representation of the object
print(ListAlertsResponse.to_json())
# convert the object into a dict
list_alerts_response_dict = list_alerts_response_instance.to_dict()
# create an instance of ListAlertsResponse from a dict
list_alerts_response_from_dict = ListAlertsResponse.from_dict(list_alerts_response_dict)