Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

BatchAlarmsSpecification.md

File metadata and controls

32 lines (23 loc) · 1.26 KB

BatchAlarmsSpecification

Properties

Name Type Description Notes
entity BatchAlarmEntity
action BatchDeleteAlarmAllOfAction
query BatchDeleteAlarmAllOfQuery
action_parameters AlarmUpdate

Example

from waylay.services.alarms.models.batch_alarms_specification import BatchAlarmsSpecification

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

# convert the object into a dict
batch_alarms_specification_dict = batch_alarms_specification_instance.to_dict()
# create an instance of BatchAlarmsSpecification from a dict
batch_alarms_specification_form_dict = batch_alarms_specification.from_dict(batch_alarms_specification_dict)

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