Name | Type | Description | Notes |
---|
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)