Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

ListAlertsRequest

Request model to list alerts.

Properties

Name Type Description Notes
search str Search term for wildcard search across alert_id, name, description [optional]
filters LogicalOperatorInput Filters to apply to the alert list [optional]
sort SortOption Sort configuration for the alert list [optional]
case_sensitive bool If True, filters and search will be case-sensitive [optional] [default to False]

Example

from mixpeek.models.list_alerts_request import ListAlertsRequest

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

# convert the object into a dict
list_alerts_request_dict = list_alerts_request_instance.to_dict()
# create an instance of ListAlertsRequest from a dict
list_alerts_request_from_dict = ListAlertsRequest.from_dict(list_alerts_request_dict)

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