Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 868 Bytes

AlarmEventType.md

File metadata and controls

28 lines (19 loc) · 868 Bytes

AlarmEventType

Properties

Name Type Description Notes

Example

from waylay.services.alarms.models.alarm_event_type import AlarmEventType

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

# convert the object into a dict
alarm_event_type_dict = alarm_event_type_instance.to_dict()
# create an instance of AlarmEventType from a dict
alarm_event_type_form_dict = alarm_event_type.from_dict(alarm_event_type_dict)

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