Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.8 KB

BatchDeleteAlarmAllOfQuery.md

File metadata and controls

42 lines (33 loc) · 1.8 KB

BatchDeleteAlarmAllOfQuery

Properties

Name Type Description Notes
ids List[str]
type AlarmTypeFilter [optional]
status AlarmStatusFilter [optional]
severity AlarmSeverityFilter [optional]
source AlarmSourceFilter [optional]
date_from int [optional]
date_to int [optional]
assignee str String field to indicate an assignee for the alarm. [optional]
creation_time_from int [optional]
creation_time_to int [optional]
last_updated_from int [optional]
last_updated_to int [optional]
last_triggered_from int [optional]
last_triggered_to int [optional]

Example

from waylay.services.alarms.models.batch_delete_alarm_all_of_query import BatchDeleteAlarmAllOfQuery

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

# convert the object into a dict
batch_delete_alarm_all_of_query_dict = batch_delete_alarm_all_of_query_instance.to_dict()
# create an instance of BatchDeleteAlarmAllOfQuery from a dict
batch_delete_alarm_all_of_query_form_dict = batch_delete_alarm_all_of_query.from_dict(batch_delete_alarm_all_of_query_dict)

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