syntax = "proto3"; package Tango.PMR.EmbeddedParameters; option java_package = "com.twine.tango.pmr.embeddedparameters"; import "AlarmSourceType.proto"; import "DebugLogCategory.proto"; import "EventType.proto"; message AlarmHandlingItem { AlarmSourceType AlarmSource = 1; uint32 DeviceId = 2; uint32 ModuleDeviceId = 3; uint32 AlarmValue = 4; bool AlarmDirection = 5; Debugging.DebugLogCategory Severity = 6; uint32 DebounceValue = 7; Diagnostics.EventType EventType = 8; string EventName = 9; bool IsPersistent = 10; }