ss412g | 286ce41 | 2019-07-04 14:00:29 +0300 | [diff] [blame] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: nb_identity.proto |
| 3 | |
| 4 | package entities |
| 5 | |
| 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
| 9 | math "math" |
| 10 | ) |
| 11 | |
| 12 | // Reference imports to suppress errors if they are not otherwise used. |
| 13 | var _ = proto.Marshal |
| 14 | var _ = fmt.Errorf |
| 15 | var _ = math.Inf |
| 16 | |
| 17 | // This is a compile-time assertion to ensure that this generated file |
| 18 | // is compatible with the proto package it is being compiled against. |
| 19 | // A compilation error at this line likely means your copy of the |
| 20 | // proto package needs to be updated. |
| 21 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
| 22 | |
| 23 | type NbIdentity struct { |
| 24 | InventoryName string `protobuf:"bytes,1,opt,name=inventory_name,json=inventoryName,proto3" json:"inventory_name,omitempty"` |
| 25 | GlobalNbId *GlobalNbId `protobuf:"bytes,2,opt,name=global_nb_id,json=globalNbId,proto3" json:"global_nb_id,omitempty"` |
| 26 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 27 | XXX_unrecognized []byte `json:"-"` |
| 28 | XXX_sizecache int32 `json:"-"` |
| 29 | } |
| 30 | |
| 31 | func (m *NbIdentity) Reset() { *m = NbIdentity{} } |
| 32 | func (m *NbIdentity) String() string { return proto.CompactTextString(m) } |
| 33 | func (*NbIdentity) ProtoMessage() {} |
| 34 | func (*NbIdentity) Descriptor() ([]byte, []int) { |
| 35 | return fileDescriptor_a07701eb9efb4b89, []int{0} |
| 36 | } |
| 37 | |
| 38 | func (m *NbIdentity) XXX_Unmarshal(b []byte) error { |
| 39 | return xxx_messageInfo_NbIdentity.Unmarshal(m, b) |
| 40 | } |
| 41 | func (m *NbIdentity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 42 | return xxx_messageInfo_NbIdentity.Marshal(b, m, deterministic) |
| 43 | } |
| 44 | func (m *NbIdentity) XXX_Merge(src proto.Message) { |
| 45 | xxx_messageInfo_NbIdentity.Merge(m, src) |
| 46 | } |
| 47 | func (m *NbIdentity) XXX_Size() int { |
| 48 | return xxx_messageInfo_NbIdentity.Size(m) |
| 49 | } |
| 50 | func (m *NbIdentity) XXX_DiscardUnknown() { |
| 51 | xxx_messageInfo_NbIdentity.DiscardUnknown(m) |
| 52 | } |
| 53 | |
| 54 | var xxx_messageInfo_NbIdentity proto.InternalMessageInfo |
| 55 | |
| 56 | func (m *NbIdentity) GetInventoryName() string { |
| 57 | if m != nil { |
| 58 | return m.InventoryName |
| 59 | } |
| 60 | return "" |
| 61 | } |
| 62 | |
| 63 | func (m *NbIdentity) GetGlobalNbId() *GlobalNbId { |
| 64 | if m != nil { |
| 65 | return m.GlobalNbId |
| 66 | } |
| 67 | return nil |
| 68 | } |
| 69 | |
| 70 | type GlobalNbId struct { |
| 71 | PlmnId string `protobuf:"bytes,1,opt,name=plmn_id,json=plmnId,proto3" json:"plmn_id,omitempty"` |
| 72 | NbId string `protobuf:"bytes,2,opt,name=nb_id,json=nbId,proto3" json:"nb_id,omitempty"` |
| 73 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 74 | XXX_unrecognized []byte `json:"-"` |
| 75 | XXX_sizecache int32 `json:"-"` |
| 76 | } |
| 77 | |
| 78 | func (m *GlobalNbId) Reset() { *m = GlobalNbId{} } |
| 79 | func (m *GlobalNbId) String() string { return proto.CompactTextString(m) } |
| 80 | func (*GlobalNbId) ProtoMessage() {} |
| 81 | func (*GlobalNbId) Descriptor() ([]byte, []int) { |
| 82 | return fileDescriptor_a07701eb9efb4b89, []int{1} |
| 83 | } |
| 84 | |
| 85 | func (m *GlobalNbId) XXX_Unmarshal(b []byte) error { |
| 86 | return xxx_messageInfo_GlobalNbId.Unmarshal(m, b) |
| 87 | } |
| 88 | func (m *GlobalNbId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 89 | return xxx_messageInfo_GlobalNbId.Marshal(b, m, deterministic) |
| 90 | } |
| 91 | func (m *GlobalNbId) XXX_Merge(src proto.Message) { |
| 92 | xxx_messageInfo_GlobalNbId.Merge(m, src) |
| 93 | } |
| 94 | func (m *GlobalNbId) XXX_Size() int { |
| 95 | return xxx_messageInfo_GlobalNbId.Size(m) |
| 96 | } |
| 97 | func (m *GlobalNbId) XXX_DiscardUnknown() { |
| 98 | xxx_messageInfo_GlobalNbId.DiscardUnknown(m) |
| 99 | } |
| 100 | |
| 101 | var xxx_messageInfo_GlobalNbId proto.InternalMessageInfo |
| 102 | |
| 103 | func (m *GlobalNbId) GetPlmnId() string { |
| 104 | if m != nil { |
| 105 | return m.PlmnId |
| 106 | } |
| 107 | return "" |
| 108 | } |
| 109 | |
| 110 | func (m *GlobalNbId) GetNbId() string { |
| 111 | if m != nil { |
| 112 | return m.NbId |
| 113 | } |
| 114 | return "" |
| 115 | } |
| 116 | |
| 117 | func init() { |
| 118 | proto.RegisterType((*NbIdentity)(nil), "entities.NbIdentity") |
| 119 | proto.RegisterType((*GlobalNbId)(nil), "entities.GlobalNbId") |
| 120 | } |
| 121 | |
| 122 | func init() { proto.RegisterFile("nb_identity.proto", fileDescriptor_a07701eb9efb4b89) } |
| 123 | |
| 124 | var fileDescriptor_a07701eb9efb4b89 = []byte{ |
| 125 | // 167 bytes of a gzipped FileDescriptorProto |
| 126 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcc, 0x4b, 0x8a, 0xcf, |
| 127 | 0x4c, 0x49, 0xcd, 0x2b, 0xc9, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x00, |
| 128 | 0xf3, 0x32, 0x53, 0x8b, 0x95, 0xb2, 0xb9, 0xb8, 0xfc, 0x92, 0x3c, 0xa1, 0xb2, 0x42, 0xaa, 0x5c, |
| 129 | 0x7c, 0x99, 0x79, 0x65, 0xa9, 0x79, 0x25, 0xf9, 0x45, 0x95, 0xf1, 0x79, 0x89, 0xb9, 0xa9, 0x12, |
| 130 | 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0xbc, 0x70, 0x51, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x33, 0x2e, |
| 131 | 0x9e, 0xf4, 0x9c, 0xfc, 0xa4, 0xc4, 0x9c, 0x78, 0xb0, 0xd1, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, |
| 132 | 0x46, 0x22, 0x7a, 0x30, 0x53, 0xf5, 0xdc, 0xc1, 0xb2, 0x20, 0x83, 0x83, 0xb8, 0xd2, 0xe1, 0x6c, |
| 133 | 0x25, 0x2b, 0x2e, 0x2e, 0x84, 0x8c, 0x90, 0x38, 0x17, 0x7b, 0x41, 0x4e, 0x6e, 0x1e, 0xc8, 0x00, |
| 134 | 0x88, 0x2d, 0x6c, 0x20, 0xae, 0x67, 0x8a, 0x90, 0x30, 0x17, 0x2b, 0xc2, 0x5c, 0xce, 0x20, 0x96, |
| 135 | 0xbc, 0x24, 0xcf, 0x94, 0x24, 0x36, 0xb0, 0xcb, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3f, |
| 136 | 0x65, 0xd0, 0x4b, 0xce, 0x00, 0x00, 0x00, |
| 137 | } |