1
2
3
4
5
6
7 package examplepb
8
9 import (
10 _ "google.golang.org/genproto/googleapis/api/annotations"
11 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
12 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
13 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
14 reflect "reflect"
15 sync "sync"
16 )
17
18 const (
19
20 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
21
22 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
23 )
24
25
26 type NonStandardMessage struct {
27 state protoimpl.MessageState
28 sizeCache protoimpl.SizeCache
29 unknownFields protoimpl.UnknownFields
30
31
32 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
33 Num int64 `protobuf:"varint,2,opt,name=Num,proto3" json:"Num,omitempty"`
34 LineNum int64 `protobuf:"varint,3,opt,name=line_num,json=lineNum,proto3" json:"line_num,omitempty"`
35 LangIdent string `protobuf:"bytes,4,opt,name=langIdent,proto3" json:"langIdent,omitempty"`
36 STATUS string `protobuf:"bytes,5,opt,name=STATUS,proto3" json:"STATUS,omitempty"`
37 En_GB int64 `protobuf:"varint,6,opt,name=en_GB,json=enGB,proto3" json:"en_GB,omitempty"`
38 No string `protobuf:"bytes,7,opt,name=no,proto3" json:"no,omitempty"`
39 Thing *NonStandardMessage_Thing `protobuf:"bytes,8,opt,name=thing,proto3" json:"thing,omitempty"`
40 }
41
42 func (x *NonStandardMessage) Reset() {
43 *x = NonStandardMessage{}
44 if protoimpl.UnsafeEnabled {
45 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[0]
46 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
47 ms.StoreMessageInfo(mi)
48 }
49 }
50
51 func (x *NonStandardMessage) String() string {
52 return protoimpl.X.MessageStringOf(x)
53 }
54
55 func (*NonStandardMessage) ProtoMessage() {}
56
57 func (x *NonStandardMessage) ProtoReflect() protoreflect.Message {
58 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[0]
59 if protoimpl.UnsafeEnabled && x != nil {
60 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
61 if ms.LoadMessageInfo() == nil {
62 ms.StoreMessageInfo(mi)
63 }
64 return ms
65 }
66 return mi.MessageOf(x)
67 }
68
69
70 func (*NonStandardMessage) Descriptor() ([]byte, []int) {
71 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{0}
72 }
73
74 func (x *NonStandardMessage) GetId() string {
75 if x != nil {
76 return x.Id
77 }
78 return ""
79 }
80
81 func (x *NonStandardMessage) GetNum() int64 {
82 if x != nil {
83 return x.Num
84 }
85 return 0
86 }
87
88 func (x *NonStandardMessage) GetLineNum() int64 {
89 if x != nil {
90 return x.LineNum
91 }
92 return 0
93 }
94
95 func (x *NonStandardMessage) GetLangIdent() string {
96 if x != nil {
97 return x.LangIdent
98 }
99 return ""
100 }
101
102 func (x *NonStandardMessage) GetSTATUS() string {
103 if x != nil {
104 return x.STATUS
105 }
106 return ""
107 }
108
109 func (x *NonStandardMessage) GetEn_GB() int64 {
110 if x != nil {
111 return x.En_GB
112 }
113 return 0
114 }
115
116 func (x *NonStandardMessage) GetNo() string {
117 if x != nil {
118 return x.No
119 }
120 return ""
121 }
122
123 func (x *NonStandardMessage) GetThing() *NonStandardMessage_Thing {
124 if x != nil {
125 return x.Thing
126 }
127 return nil
128 }
129
130 type NonStandardUpdateRequest struct {
131 state protoimpl.MessageState
132 sizeCache protoimpl.SizeCache
133 unknownFields protoimpl.UnknownFields
134
135 Body *NonStandardMessage `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
136 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
137 }
138
139 func (x *NonStandardUpdateRequest) Reset() {
140 *x = NonStandardUpdateRequest{}
141 if protoimpl.UnsafeEnabled {
142 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[1]
143 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
144 ms.StoreMessageInfo(mi)
145 }
146 }
147
148 func (x *NonStandardUpdateRequest) String() string {
149 return protoimpl.X.MessageStringOf(x)
150 }
151
152 func (*NonStandardUpdateRequest) ProtoMessage() {}
153
154 func (x *NonStandardUpdateRequest) ProtoReflect() protoreflect.Message {
155 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[1]
156 if protoimpl.UnsafeEnabled && x != nil {
157 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
158 if ms.LoadMessageInfo() == nil {
159 ms.StoreMessageInfo(mi)
160 }
161 return ms
162 }
163 return mi.MessageOf(x)
164 }
165
166
167 func (*NonStandardUpdateRequest) Descriptor() ([]byte, []int) {
168 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{1}
169 }
170
171 func (x *NonStandardUpdateRequest) GetBody() *NonStandardMessage {
172 if x != nil {
173 return x.Body
174 }
175 return nil
176 }
177
178 func (x *NonStandardUpdateRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
179 if x != nil {
180 return x.UpdateMask
181 }
182 return nil
183 }
184
185
186 type NonStandardMessageWithJSONNames struct {
187 state protoimpl.MessageState
188 sizeCache protoimpl.SizeCache
189 unknownFields protoimpl.UnknownFields
190
191
192 Id string `protobuf:"bytes,1,opt,name=id,json=ID,proto3" json:"id,omitempty"`
193 Num int64 `protobuf:"varint,2,opt,name=Num,proto3" json:"Num,omitempty"`
194 LineNum int64 `protobuf:"varint,3,opt,name=line_num,json=LineNum,proto3" json:"line_num,omitempty"`
195 LangIdent string `protobuf:"bytes,4,opt,name=langIdent,proto3" json:"langIdent,omitempty"`
196 STATUS string `protobuf:"bytes,5,opt,name=STATUS,json=status,proto3" json:"STATUS,omitempty"`
197 En_GB int64 `protobuf:"varint,6,opt,name=en_GB,json=En_GB,proto3" json:"en_GB,omitempty"`
198 No string `protobuf:"bytes,7,opt,name=no,json=yes,proto3" json:"no,omitempty"`
199 Thing *NonStandardMessageWithJSONNames_Thing `protobuf:"bytes,8,opt,name=thing,json=Thingy,proto3" json:"thing,omitempty"`
200 }
201
202 func (x *NonStandardMessageWithJSONNames) Reset() {
203 *x = NonStandardMessageWithJSONNames{}
204 if protoimpl.UnsafeEnabled {
205 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[2]
206 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
207 ms.StoreMessageInfo(mi)
208 }
209 }
210
211 func (x *NonStandardMessageWithJSONNames) String() string {
212 return protoimpl.X.MessageStringOf(x)
213 }
214
215 func (*NonStandardMessageWithJSONNames) ProtoMessage() {}
216
217 func (x *NonStandardMessageWithJSONNames) ProtoReflect() protoreflect.Message {
218 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[2]
219 if protoimpl.UnsafeEnabled && x != nil {
220 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
221 if ms.LoadMessageInfo() == nil {
222 ms.StoreMessageInfo(mi)
223 }
224 return ms
225 }
226 return mi.MessageOf(x)
227 }
228
229
230 func (*NonStandardMessageWithJSONNames) Descriptor() ([]byte, []int) {
231 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{2}
232 }
233
234 func (x *NonStandardMessageWithJSONNames) GetId() string {
235 if x != nil {
236 return x.Id
237 }
238 return ""
239 }
240
241 func (x *NonStandardMessageWithJSONNames) GetNum() int64 {
242 if x != nil {
243 return x.Num
244 }
245 return 0
246 }
247
248 func (x *NonStandardMessageWithJSONNames) GetLineNum() int64 {
249 if x != nil {
250 return x.LineNum
251 }
252 return 0
253 }
254
255 func (x *NonStandardMessageWithJSONNames) GetLangIdent() string {
256 if x != nil {
257 return x.LangIdent
258 }
259 return ""
260 }
261
262 func (x *NonStandardMessageWithJSONNames) GetSTATUS() string {
263 if x != nil {
264 return x.STATUS
265 }
266 return ""
267 }
268
269 func (x *NonStandardMessageWithJSONNames) GetEn_GB() int64 {
270 if x != nil {
271 return x.En_GB
272 }
273 return 0
274 }
275
276 func (x *NonStandardMessageWithJSONNames) GetNo() string {
277 if x != nil {
278 return x.No
279 }
280 return ""
281 }
282
283 func (x *NonStandardMessageWithJSONNames) GetThing() *NonStandardMessageWithJSONNames_Thing {
284 if x != nil {
285 return x.Thing
286 }
287 return nil
288 }
289
290 type NonStandardWithJSONNamesUpdateRequest struct {
291 state protoimpl.MessageState
292 sizeCache protoimpl.SizeCache
293 unknownFields protoimpl.UnknownFields
294
295 Body *NonStandardMessageWithJSONNames `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
296 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
297 }
298
299 func (x *NonStandardWithJSONNamesUpdateRequest) Reset() {
300 *x = NonStandardWithJSONNamesUpdateRequest{}
301 if protoimpl.UnsafeEnabled {
302 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[3]
303 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
304 ms.StoreMessageInfo(mi)
305 }
306 }
307
308 func (x *NonStandardWithJSONNamesUpdateRequest) String() string {
309 return protoimpl.X.MessageStringOf(x)
310 }
311
312 func (*NonStandardWithJSONNamesUpdateRequest) ProtoMessage() {}
313
314 func (x *NonStandardWithJSONNamesUpdateRequest) ProtoReflect() protoreflect.Message {
315 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[3]
316 if protoimpl.UnsafeEnabled && x != nil {
317 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
318 if ms.LoadMessageInfo() == nil {
319 ms.StoreMessageInfo(mi)
320 }
321 return ms
322 }
323 return mi.MessageOf(x)
324 }
325
326
327 func (*NonStandardWithJSONNamesUpdateRequest) Descriptor() ([]byte, []int) {
328 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{3}
329 }
330
331 func (x *NonStandardWithJSONNamesUpdateRequest) GetBody() *NonStandardMessageWithJSONNames {
332 if x != nil {
333 return x.Body
334 }
335 return nil
336 }
337
338 func (x *NonStandardWithJSONNamesUpdateRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
339 if x != nil {
340 return x.UpdateMask
341 }
342 return nil
343 }
344
345 type NonStandardMessage_Thing struct {
346 state protoimpl.MessageState
347 sizeCache protoimpl.SizeCache
348 unknownFields protoimpl.UnknownFields
349
350 SubThing *NonStandardMessage_Thing_SubThing `protobuf:"bytes,1,opt,name=subThing,proto3" json:"subThing,omitempty"`
351 }
352
353 func (x *NonStandardMessage_Thing) Reset() {
354 *x = NonStandardMessage_Thing{}
355 if protoimpl.UnsafeEnabled {
356 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[4]
357 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
358 ms.StoreMessageInfo(mi)
359 }
360 }
361
362 func (x *NonStandardMessage_Thing) String() string {
363 return protoimpl.X.MessageStringOf(x)
364 }
365
366 func (*NonStandardMessage_Thing) ProtoMessage() {}
367
368 func (x *NonStandardMessage_Thing) ProtoReflect() protoreflect.Message {
369 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[4]
370 if protoimpl.UnsafeEnabled && x != nil {
371 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
372 if ms.LoadMessageInfo() == nil {
373 ms.StoreMessageInfo(mi)
374 }
375 return ms
376 }
377 return mi.MessageOf(x)
378 }
379
380
381 func (*NonStandardMessage_Thing) Descriptor() ([]byte, []int) {
382 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{0, 0}
383 }
384
385 func (x *NonStandardMessage_Thing) GetSubThing() *NonStandardMessage_Thing_SubThing {
386 if x != nil {
387 return x.SubThing
388 }
389 return nil
390 }
391
392 type NonStandardMessage_Thing_SubThing struct {
393 state protoimpl.MessageState
394 sizeCache protoimpl.SizeCache
395 unknownFields protoimpl.UnknownFields
396
397 SubValue string `protobuf:"bytes,1,opt,name=sub_value,json=subValue,proto3" json:"sub_value,omitempty"`
398 }
399
400 func (x *NonStandardMessage_Thing_SubThing) Reset() {
401 *x = NonStandardMessage_Thing_SubThing{}
402 if protoimpl.UnsafeEnabled {
403 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[5]
404 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
405 ms.StoreMessageInfo(mi)
406 }
407 }
408
409 func (x *NonStandardMessage_Thing_SubThing) String() string {
410 return protoimpl.X.MessageStringOf(x)
411 }
412
413 func (*NonStandardMessage_Thing_SubThing) ProtoMessage() {}
414
415 func (x *NonStandardMessage_Thing_SubThing) ProtoReflect() protoreflect.Message {
416 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[5]
417 if protoimpl.UnsafeEnabled && x != nil {
418 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
419 if ms.LoadMessageInfo() == nil {
420 ms.StoreMessageInfo(mi)
421 }
422 return ms
423 }
424 return mi.MessageOf(x)
425 }
426
427
428 func (*NonStandardMessage_Thing_SubThing) Descriptor() ([]byte, []int) {
429 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{0, 0, 0}
430 }
431
432 func (x *NonStandardMessage_Thing_SubThing) GetSubValue() string {
433 if x != nil {
434 return x.SubValue
435 }
436 return ""
437 }
438
439 type NonStandardMessageWithJSONNames_Thing struct {
440 state protoimpl.MessageState
441 sizeCache protoimpl.SizeCache
442 unknownFields protoimpl.UnknownFields
443
444 SubThing *NonStandardMessageWithJSONNames_Thing_SubThing `protobuf:"bytes,1,opt,name=subThing,json=SubThing,proto3" json:"subThing,omitempty"`
445 }
446
447 func (x *NonStandardMessageWithJSONNames_Thing) Reset() {
448 *x = NonStandardMessageWithJSONNames_Thing{}
449 if protoimpl.UnsafeEnabled {
450 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[6]
451 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
452 ms.StoreMessageInfo(mi)
453 }
454 }
455
456 func (x *NonStandardMessageWithJSONNames_Thing) String() string {
457 return protoimpl.X.MessageStringOf(x)
458 }
459
460 func (*NonStandardMessageWithJSONNames_Thing) ProtoMessage() {}
461
462 func (x *NonStandardMessageWithJSONNames_Thing) ProtoReflect() protoreflect.Message {
463 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[6]
464 if protoimpl.UnsafeEnabled && x != nil {
465 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
466 if ms.LoadMessageInfo() == nil {
467 ms.StoreMessageInfo(mi)
468 }
469 return ms
470 }
471 return mi.MessageOf(x)
472 }
473
474
475 func (*NonStandardMessageWithJSONNames_Thing) Descriptor() ([]byte, []int) {
476 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{2, 0}
477 }
478
479 func (x *NonStandardMessageWithJSONNames_Thing) GetSubThing() *NonStandardMessageWithJSONNames_Thing_SubThing {
480 if x != nil {
481 return x.SubThing
482 }
483 return nil
484 }
485
486 type NonStandardMessageWithJSONNames_Thing_SubThing struct {
487 state protoimpl.MessageState
488 sizeCache protoimpl.SizeCache
489 unknownFields protoimpl.UnknownFields
490
491 SubValue string `protobuf:"bytes,1,opt,name=sub_value,json=sub_Value,proto3" json:"sub_value,omitempty"`
492 }
493
494 func (x *NonStandardMessageWithJSONNames_Thing_SubThing) Reset() {
495 *x = NonStandardMessageWithJSONNames_Thing_SubThing{}
496 if protoimpl.UnsafeEnabled {
497 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[7]
498 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
499 ms.StoreMessageInfo(mi)
500 }
501 }
502
503 func (x *NonStandardMessageWithJSONNames_Thing_SubThing) String() string {
504 return protoimpl.X.MessageStringOf(x)
505 }
506
507 func (*NonStandardMessageWithJSONNames_Thing_SubThing) ProtoMessage() {}
508
509 func (x *NonStandardMessageWithJSONNames_Thing_SubThing) ProtoReflect() protoreflect.Message {
510 mi := &file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[7]
511 if protoimpl.UnsafeEnabled && x != nil {
512 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
513 if ms.LoadMessageInfo() == nil {
514 ms.StoreMessageInfo(mi)
515 }
516 return ms
517 }
518 return mi.MessageOf(x)
519 }
520
521
522 func (*NonStandardMessageWithJSONNames_Thing_SubThing) Descriptor() ([]byte, []int) {
523 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP(), []int{2, 0, 0}
524 }
525
526 func (x *NonStandardMessageWithJSONNames_Thing_SubThing) GetSubValue() string {
527 if x != nil {
528 return x.SubValue
529 }
530 return ""
531 }
532
533 var File_examples_internal_proto_examplepb_non_standard_names_proto protoreflect.FileDescriptor
534
535 var file_examples_internal_proto_examplepb_non_standard_names_proto_rawDesc = []byte{
536 0x0a, 0x3a, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
537 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
538 0x65, 0x70, 0x62, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
539 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x2e, 0x67, 0x72,
540 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70,
541 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
542 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x1a, 0x1c, 0x67, 0x6f,
543 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
544 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67,
545 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c,
546 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xae, 0x03, 0x0a,
547 0x12, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73,
548 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
549 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
550 0x52, 0x03, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x75,
551 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x69, 0x6e, 0x65, 0x4e, 0x75, 0x6d,
552 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x61, 0x6e, 0x67, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20,
553 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x61, 0x6e, 0x67, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x16,
554 0x0a, 0x06, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
555 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x12, 0x13, 0x0a, 0x05, 0x65, 0x6e, 0x5f, 0x47, 0x42, 0x18,
556 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x65, 0x6e, 0x47, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x6e,
557 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x6e, 0x6f, 0x12, 0x5e, 0x0a, 0x05, 0x74,
558 0x68, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x72, 0x70,
559 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
560 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74,
561 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53,
562 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x54,
563 0x68, 0x69, 0x6e, 0x67, 0x52, 0x05, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x1a, 0x9f, 0x01, 0x0a, 0x05,
564 0x54, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x6d, 0x0a, 0x08, 0x73, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e,
565 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
566 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e,
567 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65,
568 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e,
569 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x54, 0x68, 0x69, 0x6e,
570 0x67, 0x2e, 0x53, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x08, 0x73, 0x75, 0x62, 0x54,
571 0x68, 0x69, 0x6e, 0x67, 0x1a, 0x27, 0x0a, 0x08, 0x53, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e, 0x67,
572 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x75, 0x62, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
573 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x75, 0x62, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xaf, 0x01,
574 0x0a, 0x18, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x55, 0x70, 0x64,
575 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x56, 0x0a, 0x04, 0x62, 0x6f,
576 0x64, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e,
577 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73,
578 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
579 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61,
580 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x04, 0x62, 0x6f,
581 0x64, 0x79, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73,
582 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
583 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d,
584 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22,
585 0xd9, 0x03, 0x0a, 0x1f, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4d,
586 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4a, 0x53, 0x4f, 0x4e, 0x4e, 0x61,
587 0x6d, 0x65, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
588 0x02, 0x49, 0x44, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
589 0x52, 0x03, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x75,
590 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x4c, 0x69, 0x6e, 0x65, 0x4e, 0x75, 0x6d,
591 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x61, 0x6e, 0x67, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20,
592 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x61, 0x6e, 0x67, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x16,
593 0x0a, 0x06, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
594 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x5f, 0x47, 0x42, 0x18,
595 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x45, 0x6e, 0x5f, 0x47, 0x42, 0x12, 0x0f, 0x0a, 0x02,
596 0x6e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x79, 0x65, 0x73, 0x12, 0x6c, 0x0a,
597 0x05, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x55, 0x2e, 0x67,
598 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d,
599 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72,
600 0x6f, 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f,
601 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
602 0x57, 0x69, 0x74, 0x68, 0x4a, 0x53, 0x4f, 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x2e, 0x54, 0x68,
603 0x69, 0x6e, 0x67, 0x52, 0x06, 0x54, 0x68, 0x69, 0x6e, 0x67, 0x79, 0x1a, 0xad, 0x01, 0x0a, 0x05,
604 0x54, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x7a, 0x0a, 0x08, 0x73, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e,
605 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x5e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
606 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e,
607 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65,
608 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e,
609 0x64, 0x61, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4a,
610 0x53, 0x4f, 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x6e, 0x67, 0x2e, 0x53,
611 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x08, 0x53, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e,
612 0x67, 0x1a, 0x28, 0x0a, 0x08, 0x53, 0x75, 0x62, 0x54, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x1c, 0x0a,
613 0x09, 0x73, 0x75, 0x62, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
614 0x52, 0x09, 0x73, 0x75, 0x62, 0x5f, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xc9, 0x01, 0x0a, 0x25,
615 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x57, 0x69, 0x74, 0x68, 0x4a,
616 0x53, 0x4f, 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
617 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x63, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x01, 0x20,
618 0x01, 0x28, 0x0b, 0x32, 0x4f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
619 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65,
620 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70,
621 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
622 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4a, 0x53, 0x4f, 0x4e, 0x4e,
623 0x61, 0x6d, 0x65, 0x73, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70,
624 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
625 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
626 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64,
627 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x32, 0xdb, 0x03, 0x0a, 0x12, 0x4e, 0x6f, 0x6e, 0x53,
628 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xc5,
629 0x01, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x48, 0x2e, 0x67, 0x72, 0x70, 0x63,
630 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
631 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
632 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74,
633 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
634 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
635 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65,
636 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70,
637 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
638 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a,
639 0x04, 0x62, 0x6f, 0x64, 0x79, 0x32, 0x1f, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70,
640 0x6c, 0x65, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x2f,
641 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0xfc, 0x01, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74,
642 0x65, 0x57, 0x69, 0x74, 0x68, 0x4a, 0x53, 0x4f, 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x55,
643 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78,
644 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e,
645 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e,
646 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x57, 0x69, 0x74, 0x68, 0x4a,
647 0x53, 0x4f, 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
648 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x4f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74,
649 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x69, 0x6e,
650 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x65, 0x78, 0x61,
651 0x6d, 0x70, 0x6c, 0x65, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
652 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4a, 0x53, 0x4f,
653 0x4e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x3d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x04,
654 0x62, 0x6f, 0x64, 0x79, 0x32, 0x2f, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
655 0x65, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x2f, 0x75,
656 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x6a, 0x73, 0x6f, 0x6e, 0x5f,
657 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
658 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2d, 0x65, 0x63, 0x6f, 0x73, 0x79, 0x73, 0x74,
659 0x65, 0x6d, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2d, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2f,
660 0x76, 0x32, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65,
661 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70,
662 0x6c, 0x65, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
663 }
664
665 var (
666 file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescOnce sync.Once
667 file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescData = file_examples_internal_proto_examplepb_non_standard_names_proto_rawDesc
668 )
669
670 func file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescGZIP() []byte {
671 file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescOnce.Do(func() {
672 file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescData = protoimpl.X.CompressGZIP(file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescData)
673 })
674 return file_examples_internal_proto_examplepb_non_standard_names_proto_rawDescData
675 }
676
677 var file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
678 var file_examples_internal_proto_examplepb_non_standard_names_proto_goTypes = []interface{}{
679 (*NonStandardMessage)(nil),
680 (*NonStandardUpdateRequest)(nil),
681 (*NonStandardMessageWithJSONNames)(nil),
682 (*NonStandardWithJSONNamesUpdateRequest)(nil),
683 (*NonStandardMessage_Thing)(nil),
684 (*NonStandardMessage_Thing_SubThing)(nil),
685 (*NonStandardMessageWithJSONNames_Thing)(nil),
686 (*NonStandardMessageWithJSONNames_Thing_SubThing)(nil),
687 (*fieldmaskpb.FieldMask)(nil),
688 }
689 var file_examples_internal_proto_examplepb_non_standard_names_proto_depIdxs = []int32{
690 4,
691 0,
692 8,
693 6,
694 2,
695 8,
696 5,
697 7,
698 1,
699 3,
700 0,
701 2,
702 10,
703 8,
704 8,
705 8,
706 0,
707 }
708
709 func init() { file_examples_internal_proto_examplepb_non_standard_names_proto_init() }
710 func file_examples_internal_proto_examplepb_non_standard_names_proto_init() {
711 if File_examples_internal_proto_examplepb_non_standard_names_proto != nil {
712 return
713 }
714 if !protoimpl.UnsafeEnabled {
715 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
716 switch v := v.(*NonStandardMessage); i {
717 case 0:
718 return &v.state
719 case 1:
720 return &v.sizeCache
721 case 2:
722 return &v.unknownFields
723 default:
724 return nil
725 }
726 }
727 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
728 switch v := v.(*NonStandardUpdateRequest); i {
729 case 0:
730 return &v.state
731 case 1:
732 return &v.sizeCache
733 case 2:
734 return &v.unknownFields
735 default:
736 return nil
737 }
738 }
739 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
740 switch v := v.(*NonStandardMessageWithJSONNames); i {
741 case 0:
742 return &v.state
743 case 1:
744 return &v.sizeCache
745 case 2:
746 return &v.unknownFields
747 default:
748 return nil
749 }
750 }
751 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
752 switch v := v.(*NonStandardWithJSONNamesUpdateRequest); i {
753 case 0:
754 return &v.state
755 case 1:
756 return &v.sizeCache
757 case 2:
758 return &v.unknownFields
759 default:
760 return nil
761 }
762 }
763 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
764 switch v := v.(*NonStandardMessage_Thing); i {
765 case 0:
766 return &v.state
767 case 1:
768 return &v.sizeCache
769 case 2:
770 return &v.unknownFields
771 default:
772 return nil
773 }
774 }
775 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
776 switch v := v.(*NonStandardMessage_Thing_SubThing); i {
777 case 0:
778 return &v.state
779 case 1:
780 return &v.sizeCache
781 case 2:
782 return &v.unknownFields
783 default:
784 return nil
785 }
786 }
787 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
788 switch v := v.(*NonStandardMessageWithJSONNames_Thing); i {
789 case 0:
790 return &v.state
791 case 1:
792 return &v.sizeCache
793 case 2:
794 return &v.unknownFields
795 default:
796 return nil
797 }
798 }
799 file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
800 switch v := v.(*NonStandardMessageWithJSONNames_Thing_SubThing); i {
801 case 0:
802 return &v.state
803 case 1:
804 return &v.sizeCache
805 case 2:
806 return &v.unknownFields
807 default:
808 return nil
809 }
810 }
811 }
812 type x struct{}
813 out := protoimpl.TypeBuilder{
814 File: protoimpl.DescBuilder{
815 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
816 RawDescriptor: file_examples_internal_proto_examplepb_non_standard_names_proto_rawDesc,
817 NumEnums: 0,
818 NumMessages: 8,
819 NumExtensions: 0,
820 NumServices: 1,
821 },
822 GoTypes: file_examples_internal_proto_examplepb_non_standard_names_proto_goTypes,
823 DependencyIndexes: file_examples_internal_proto_examplepb_non_standard_names_proto_depIdxs,
824 MessageInfos: file_examples_internal_proto_examplepb_non_standard_names_proto_msgTypes,
825 }.Build()
826 File_examples_internal_proto_examplepb_non_standard_names_proto = out.File
827 file_examples_internal_proto_examplepb_non_standard_names_proto_rawDesc = nil
828 file_examples_internal_proto_examplepb_non_standard_names_proto_goTypes = nil
829 file_examples_internal_proto_examplepb_non_standard_names_proto_depIdxs = nil
830 }
831
View as plain text