please upgrade the proto package Key identifies a unique resource in the system
| 26 | |
| 27 | // Key identifies a unique resource in the system |
| 28 | type Key struct { |
| 29 | // Kind indicates the type of resource the Key points to. e.g., "channel", |
| 30 | // "bridge", etc. |
| 31 | Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` |
| 32 | // ID indicates the unique identifier of the resource |
| 33 | ID string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` |
| 34 | // Node indicates the unique identifier of the Asterisk node on which the |
| 35 | // resource exists or will be created |
| 36 | Node string `protobuf:"bytes,3,opt,name=node,proto3" json:"node,omitempty"` |
| 37 | // Dialog indicates a named scope of the resource, for receiving events |
| 38 | Dialog string `protobuf:"bytes,4,opt,name=dialog,proto3" json:"dialog,omitempty"` |
| 39 | // App indiciates the ARI application that this key is bound to. |
| 40 | App string `protobuf:"bytes,5,opt,name=app,proto3" json:"app,omitempty"` |
| 41 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 42 | XXX_unrecognized []byte `json:"-"` |
| 43 | XXX_sizecache int32 `json:"-"` |
| 44 | } |
| 45 | |
| 46 | func (m *Key) Reset() { *m = Key{} } |
| 47 | func (*Key) ProtoMessage() {} |
nothing calls this directly
no outgoing calls
no test coverage detected