package kme type KME interface { isKME() } type KMESpecificPrivateData struct { CallControlSrvEvt `asn1:"optional,tag:1"` DeviceStatus `asn1:"optional,tag:2"` DeviceMonitor `asn1:"optional,tag:3"` SystemData `asn1:"optional,tag:4"` LocalAlerm `asn1:"optional,tag:5"` AdditionalData `asn1:"optional,tag:6"` PrivateEvent `asn1:"optional,tag:7"` ResourceControl `asn1:"optional,tag:8"` GenericSrvEvt `asn1:"optional,tag:9"` ExtendedDataAccess []byte `asn1:"optional,tag:10"` PDFSrvEvt `asn1:"optional,tag:11"` AlterIfSrvEvt `asn1:"optional,tag:12"` HotelSrvEvt `asn1:"optional,tag:13"` } type CallControlSrvEvt struct{} type DeviceStatus struct{} type DeviceMonitor struct{} type SystemData struct{} type LocalAlerm struct{} type AdditionalData struct{} type PrivateEvent struct{} type ResourceControl struct{} type GenericSrvEvt struct{} type PDFSrvEvt struct{} type AlterIfSrvEvt struct{} type HotelSrvEvt struct{} func (CallControlSrvEvt) isKME() {} func (DeviceStatus) isKME() {} func (DeviceMonitor) isKME() {} func (SystemData) isKME() {} func (LocalAlerm) isKME() {} func (AdditionalData) isKME() {} func (PrivateEvent) isKME() {} func (ResourceControl) isKME() {} func (GenericSrvEvt) isKME() {} func (PDFSrvEvt) isKME() {} func (AlterIfSrvEvt) isKME() {} func (HotelSrvEvt) isKME() {}