Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

BatchDeleteAlarm.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

BatchDeleteAlarm

Properties

Name Type Description Notes
entity BatchAlarmEntity
action BatchDeleteAlarmAllOfAction
query BatchDeleteAlarmAllOfQuery

Example

from waylay.services.alarms.models.batch_delete_alarm import BatchDeleteAlarm

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

# convert the object into a dict
batch_delete_alarm_dict = batch_delete_alarm_instance.to_dict()
# create an instance of BatchDeleteAlarm from a dict
batch_delete_alarm_form_dict = batch_delete_alarm.from_dict(batch_delete_alarm_dict)

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