Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

AlarmUpdate.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

AlarmUpdate

At least one field must be specified.

Properties

Name Type Description Notes
severity AlarmSeverity [optional]
status AlarmStatus [optional] [default to AlarmStatus.ACTIVE]
assignee str [optional]

Example

from waylay.services.alarms.models.alarm_update import AlarmUpdate

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

# convert the object into a dict
alarm_update_dict = alarm_update_instance.to_dict()
# create an instance of AlarmUpdate from a dict
alarm_update_form_dict = alarm_update.from_dict(alarm_update_dict)

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