Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

ListAlertsResponse

Response model for listing alerts.

Properties

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]

Example

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)

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