Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

BatchUpdateAlarm.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

BatchUpdateAlarm

Properties

Name Type Description Notes
entity BatchAlarmEntity
action BatchUpdateAlarmAllOfAction
query BulkQueryIds
action_parameters AlarmUpdate

Example

from waylay.services.alarms.models.batch_update_alarm import BatchUpdateAlarm

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

# convert the object into a dict
batch_update_alarm_dict = batch_update_alarm_instance.to_dict()
# create an instance of BatchUpdateAlarm from a dict
batch_update_alarm_form_dict = batch_update_alarm.from_dict(batch_update_alarm_dict)

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