aboutsummaryrefslogtreecommitdiff
path: root/kme/kme.go
blob: 900dce660766eb3c1aadc1f16470c5e245ce0699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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()       {}