blob: 5c5ec2f10218f329f9e1e7e46797a85e68c525a5 [file] [log] [blame]
Andrea Campanella3614a922021-02-25 12:40:42 +01001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
3// https://developers.google.com/protocol-buffers/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31// Wrappers for primitive (non-message) types. These types are useful
32// for embedding primitives in the `google.protobuf.Any` type and for places
33// where we need to distinguish between the absence of a primitive
34// typed field and its default value.
35//
36// These wrappers have no meaningful use within repeated fields as they lack
37// the ability to detect presence on individual elements.
38// These wrappers have no meaningful use within a map or a oneof since
39// individual entries of a map or fields of a oneof can already detect presence.
40
41// Code generated by protoc-gen-go. DO NOT EDIT.
42// source: google/protobuf/wrappers.proto
43
44package wrapperspb
45
46import (
47 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
48 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
49 reflect "reflect"
50 sync "sync"
51)
52
53// Wrapper message for `double`.
54//
55// The JSON representation for `DoubleValue` is JSON number.
56type DoubleValue struct {
57 state protoimpl.MessageState
58 sizeCache protoimpl.SizeCache
59 unknownFields protoimpl.UnknownFields
60
61 // The double value.
62 Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
63}
64
65func (x *DoubleValue) Reset() {
66 *x = DoubleValue{}
67 if protoimpl.UnsafeEnabled {
68 mi := &file_google_protobuf_wrappers_proto_msgTypes[0]
69 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
70 ms.StoreMessageInfo(mi)
71 }
72}
73
74func (x *DoubleValue) String() string {
75 return protoimpl.X.MessageStringOf(x)
76}
77
78func (*DoubleValue) ProtoMessage() {}
79
80func (x *DoubleValue) ProtoReflect() protoreflect.Message {
81 mi := &file_google_protobuf_wrappers_proto_msgTypes[0]
82 if protoimpl.UnsafeEnabled && x != nil {
83 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
84 if ms.LoadMessageInfo() == nil {
85 ms.StoreMessageInfo(mi)
86 }
87 return ms
88 }
89 return mi.MessageOf(x)
90}
91
92// Deprecated: Use DoubleValue.ProtoReflect.Descriptor instead.
93func (*DoubleValue) Descriptor() ([]byte, []int) {
94 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{0}
95}
96
97func (x *DoubleValue) GetValue() float64 {
98 if x != nil {
99 return x.Value
100 }
101 return 0
102}
103
104// Wrapper message for `float`.
105//
106// The JSON representation for `FloatValue` is JSON number.
107type FloatValue struct {
108 state protoimpl.MessageState
109 sizeCache protoimpl.SizeCache
110 unknownFields protoimpl.UnknownFields
111
112 // The float value.
113 Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
114}
115
116func (x *FloatValue) Reset() {
117 *x = FloatValue{}
118 if protoimpl.UnsafeEnabled {
119 mi := &file_google_protobuf_wrappers_proto_msgTypes[1]
120 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
121 ms.StoreMessageInfo(mi)
122 }
123}
124
125func (x *FloatValue) String() string {
126 return protoimpl.X.MessageStringOf(x)
127}
128
129func (*FloatValue) ProtoMessage() {}
130
131func (x *FloatValue) ProtoReflect() protoreflect.Message {
132 mi := &file_google_protobuf_wrappers_proto_msgTypes[1]
133 if protoimpl.UnsafeEnabled && x != nil {
134 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
135 if ms.LoadMessageInfo() == nil {
136 ms.StoreMessageInfo(mi)
137 }
138 return ms
139 }
140 return mi.MessageOf(x)
141}
142
143// Deprecated: Use FloatValue.ProtoReflect.Descriptor instead.
144func (*FloatValue) Descriptor() ([]byte, []int) {
145 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{1}
146}
147
148func (x *FloatValue) GetValue() float32 {
149 if x != nil {
150 return x.Value
151 }
152 return 0
153}
154
155// Wrapper message for `int64`.
156//
157// The JSON representation for `Int64Value` is JSON string.
158type Int64Value struct {
159 state protoimpl.MessageState
160 sizeCache protoimpl.SizeCache
161 unknownFields protoimpl.UnknownFields
162
163 // The int64 value.
164 Value int64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
165}
166
167func (x *Int64Value) Reset() {
168 *x = Int64Value{}
169 if protoimpl.UnsafeEnabled {
170 mi := &file_google_protobuf_wrappers_proto_msgTypes[2]
171 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
172 ms.StoreMessageInfo(mi)
173 }
174}
175
176func (x *Int64Value) String() string {
177 return protoimpl.X.MessageStringOf(x)
178}
179
180func (*Int64Value) ProtoMessage() {}
181
182func (x *Int64Value) ProtoReflect() protoreflect.Message {
183 mi := &file_google_protobuf_wrappers_proto_msgTypes[2]
184 if protoimpl.UnsafeEnabled && x != nil {
185 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
186 if ms.LoadMessageInfo() == nil {
187 ms.StoreMessageInfo(mi)
188 }
189 return ms
190 }
191 return mi.MessageOf(x)
192}
193
194// Deprecated: Use Int64Value.ProtoReflect.Descriptor instead.
195func (*Int64Value) Descriptor() ([]byte, []int) {
196 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{2}
197}
198
199func (x *Int64Value) GetValue() int64 {
200 if x != nil {
201 return x.Value
202 }
203 return 0
204}
205
206// Wrapper message for `uint64`.
207//
208// The JSON representation for `UInt64Value` is JSON string.
209type UInt64Value struct {
210 state protoimpl.MessageState
211 sizeCache protoimpl.SizeCache
212 unknownFields protoimpl.UnknownFields
213
214 // The uint64 value.
215 Value uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
216}
217
218func (x *UInt64Value) Reset() {
219 *x = UInt64Value{}
220 if protoimpl.UnsafeEnabled {
221 mi := &file_google_protobuf_wrappers_proto_msgTypes[3]
222 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
223 ms.StoreMessageInfo(mi)
224 }
225}
226
227func (x *UInt64Value) String() string {
228 return protoimpl.X.MessageStringOf(x)
229}
230
231func (*UInt64Value) ProtoMessage() {}
232
233func (x *UInt64Value) ProtoReflect() protoreflect.Message {
234 mi := &file_google_protobuf_wrappers_proto_msgTypes[3]
235 if protoimpl.UnsafeEnabled && x != nil {
236 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
237 if ms.LoadMessageInfo() == nil {
238 ms.StoreMessageInfo(mi)
239 }
240 return ms
241 }
242 return mi.MessageOf(x)
243}
244
245// Deprecated: Use UInt64Value.ProtoReflect.Descriptor instead.
246func (*UInt64Value) Descriptor() ([]byte, []int) {
247 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{3}
248}
249
250func (x *UInt64Value) GetValue() uint64 {
251 if x != nil {
252 return x.Value
253 }
254 return 0
255}
256
257// Wrapper message for `int32`.
258//
259// The JSON representation for `Int32Value` is JSON number.
260type Int32Value struct {
261 state protoimpl.MessageState
262 sizeCache protoimpl.SizeCache
263 unknownFields protoimpl.UnknownFields
264
265 // The int32 value.
266 Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
267}
268
269func (x *Int32Value) Reset() {
270 *x = Int32Value{}
271 if protoimpl.UnsafeEnabled {
272 mi := &file_google_protobuf_wrappers_proto_msgTypes[4]
273 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
274 ms.StoreMessageInfo(mi)
275 }
276}
277
278func (x *Int32Value) String() string {
279 return protoimpl.X.MessageStringOf(x)
280}
281
282func (*Int32Value) ProtoMessage() {}
283
284func (x *Int32Value) ProtoReflect() protoreflect.Message {
285 mi := &file_google_protobuf_wrappers_proto_msgTypes[4]
286 if protoimpl.UnsafeEnabled && x != nil {
287 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
288 if ms.LoadMessageInfo() == nil {
289 ms.StoreMessageInfo(mi)
290 }
291 return ms
292 }
293 return mi.MessageOf(x)
294}
295
296// Deprecated: Use Int32Value.ProtoReflect.Descriptor instead.
297func (*Int32Value) Descriptor() ([]byte, []int) {
298 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{4}
299}
300
301func (x *Int32Value) GetValue() int32 {
302 if x != nil {
303 return x.Value
304 }
305 return 0
306}
307
308// Wrapper message for `uint32`.
309//
310// The JSON representation for `UInt32Value` is JSON number.
311type UInt32Value struct {
312 state protoimpl.MessageState
313 sizeCache protoimpl.SizeCache
314 unknownFields protoimpl.UnknownFields
315
316 // The uint32 value.
317 Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
318}
319
320func (x *UInt32Value) Reset() {
321 *x = UInt32Value{}
322 if protoimpl.UnsafeEnabled {
323 mi := &file_google_protobuf_wrappers_proto_msgTypes[5]
324 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
325 ms.StoreMessageInfo(mi)
326 }
327}
328
329func (x *UInt32Value) String() string {
330 return protoimpl.X.MessageStringOf(x)
331}
332
333func (*UInt32Value) ProtoMessage() {}
334
335func (x *UInt32Value) ProtoReflect() protoreflect.Message {
336 mi := &file_google_protobuf_wrappers_proto_msgTypes[5]
337 if protoimpl.UnsafeEnabled && x != nil {
338 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
339 if ms.LoadMessageInfo() == nil {
340 ms.StoreMessageInfo(mi)
341 }
342 return ms
343 }
344 return mi.MessageOf(x)
345}
346
347// Deprecated: Use UInt32Value.ProtoReflect.Descriptor instead.
348func (*UInt32Value) Descriptor() ([]byte, []int) {
349 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{5}
350}
351
352func (x *UInt32Value) GetValue() uint32 {
353 if x != nil {
354 return x.Value
355 }
356 return 0
357}
358
359// Wrapper message for `bool`.
360//
361// The JSON representation for `BoolValue` is JSON `true` and `false`.
362type BoolValue struct {
363 state protoimpl.MessageState
364 sizeCache protoimpl.SizeCache
365 unknownFields protoimpl.UnknownFields
366
367 // The bool value.
368 Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
369}
370
371func (x *BoolValue) Reset() {
372 *x = BoolValue{}
373 if protoimpl.UnsafeEnabled {
374 mi := &file_google_protobuf_wrappers_proto_msgTypes[6]
375 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
376 ms.StoreMessageInfo(mi)
377 }
378}
379
380func (x *BoolValue) String() string {
381 return protoimpl.X.MessageStringOf(x)
382}
383
384func (*BoolValue) ProtoMessage() {}
385
386func (x *BoolValue) ProtoReflect() protoreflect.Message {
387 mi := &file_google_protobuf_wrappers_proto_msgTypes[6]
388 if protoimpl.UnsafeEnabled && x != nil {
389 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
390 if ms.LoadMessageInfo() == nil {
391 ms.StoreMessageInfo(mi)
392 }
393 return ms
394 }
395 return mi.MessageOf(x)
396}
397
398// Deprecated: Use BoolValue.ProtoReflect.Descriptor instead.
399func (*BoolValue) Descriptor() ([]byte, []int) {
400 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{6}
401}
402
403func (x *BoolValue) GetValue() bool {
404 if x != nil {
405 return x.Value
406 }
407 return false
408}
409
410// Wrapper message for `string`.
411//
412// The JSON representation for `StringValue` is JSON string.
413type StringValue struct {
414 state protoimpl.MessageState
415 sizeCache protoimpl.SizeCache
416 unknownFields protoimpl.UnknownFields
417
418 // The string value.
419 Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
420}
421
422func (x *StringValue) Reset() {
423 *x = StringValue{}
424 if protoimpl.UnsafeEnabled {
425 mi := &file_google_protobuf_wrappers_proto_msgTypes[7]
426 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
427 ms.StoreMessageInfo(mi)
428 }
429}
430
431func (x *StringValue) String() string {
432 return protoimpl.X.MessageStringOf(x)
433}
434
435func (*StringValue) ProtoMessage() {}
436
437func (x *StringValue) ProtoReflect() protoreflect.Message {
438 mi := &file_google_protobuf_wrappers_proto_msgTypes[7]
439 if protoimpl.UnsafeEnabled && x != nil {
440 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
441 if ms.LoadMessageInfo() == nil {
442 ms.StoreMessageInfo(mi)
443 }
444 return ms
445 }
446 return mi.MessageOf(x)
447}
448
449// Deprecated: Use StringValue.ProtoReflect.Descriptor instead.
450func (*StringValue) Descriptor() ([]byte, []int) {
451 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{7}
452}
453
454func (x *StringValue) GetValue() string {
455 if x != nil {
456 return x.Value
457 }
458 return ""
459}
460
461// Wrapper message for `bytes`.
462//
463// The JSON representation for `BytesValue` is JSON string.
464type BytesValue struct {
465 state protoimpl.MessageState
466 sizeCache protoimpl.SizeCache
467 unknownFields protoimpl.UnknownFields
468
469 // The bytes value.
470 Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
471}
472
473func (x *BytesValue) Reset() {
474 *x = BytesValue{}
475 if protoimpl.UnsafeEnabled {
476 mi := &file_google_protobuf_wrappers_proto_msgTypes[8]
477 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
478 ms.StoreMessageInfo(mi)
479 }
480}
481
482func (x *BytesValue) String() string {
483 return protoimpl.X.MessageStringOf(x)
484}
485
486func (*BytesValue) ProtoMessage() {}
487
488func (x *BytesValue) ProtoReflect() protoreflect.Message {
489 mi := &file_google_protobuf_wrappers_proto_msgTypes[8]
490 if protoimpl.UnsafeEnabled && x != nil {
491 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
492 if ms.LoadMessageInfo() == nil {
493 ms.StoreMessageInfo(mi)
494 }
495 return ms
496 }
497 return mi.MessageOf(x)
498}
499
500// Deprecated: Use BytesValue.ProtoReflect.Descriptor instead.
501func (*BytesValue) Descriptor() ([]byte, []int) {
502 return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{8}
503}
504
505func (x *BytesValue) GetValue() []byte {
506 if x != nil {
507 return x.Value
508 }
509 return nil
510}
511
512var File_google_protobuf_wrappers_proto protoreflect.FileDescriptor
513
514var file_google_protobuf_wrappers_proto_rawDesc = []byte{
515 0x0a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
516 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
517 0x12, 0x0f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
518 0x66, 0x22, 0x23, 0x0a, 0x0b, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65,
519 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
520 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0a, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x56,
521 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
522 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0a, 0x49, 0x6e,
523 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
524 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x23,
525 0x0a, 0x0b, 0x55, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a,
526 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61,
527 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0a, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75,
528 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
529 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x23, 0x0a, 0x0b, 0x55, 0x49, 0x6e, 0x74, 0x33,
530 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
531 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x21, 0x0a, 0x09,
532 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
533 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22,
534 0x23, 0x0a, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14,
535 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
536 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0a, 0x42, 0x79, 0x74, 0x65, 0x73, 0x56, 0x61, 0x6c,
537 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
538 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x7c, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x2e,
539 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x42,
540 0x0d, 0x57, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
541 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c,
542 0x61, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x70, 0x74, 0x79,
543 0x70, 0x65, 0x73, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0xf8, 0x01, 0x01, 0xa2,
544 0x02, 0x03, 0x47, 0x50, 0x42, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50,
545 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x57, 0x65, 0x6c, 0x6c, 0x4b, 0x6e, 0x6f, 0x77,
546 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
547}
548
549var (
550 file_google_protobuf_wrappers_proto_rawDescOnce sync.Once
551 file_google_protobuf_wrappers_proto_rawDescData = file_google_protobuf_wrappers_proto_rawDesc
552)
553
554func file_google_protobuf_wrappers_proto_rawDescGZIP() []byte {
555 file_google_protobuf_wrappers_proto_rawDescOnce.Do(func() {
556 file_google_protobuf_wrappers_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_protobuf_wrappers_proto_rawDescData)
557 })
558 return file_google_protobuf_wrappers_proto_rawDescData
559}
560
561var file_google_protobuf_wrappers_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
562var file_google_protobuf_wrappers_proto_goTypes = []interface{}{
563 (*DoubleValue)(nil), // 0: google.protobuf.DoubleValue
564 (*FloatValue)(nil), // 1: google.protobuf.FloatValue
565 (*Int64Value)(nil), // 2: google.protobuf.Int64Value
566 (*UInt64Value)(nil), // 3: google.protobuf.UInt64Value
567 (*Int32Value)(nil), // 4: google.protobuf.Int32Value
568 (*UInt32Value)(nil), // 5: google.protobuf.UInt32Value
569 (*BoolValue)(nil), // 6: google.protobuf.BoolValue
570 (*StringValue)(nil), // 7: google.protobuf.StringValue
571 (*BytesValue)(nil), // 8: google.protobuf.BytesValue
572}
573var file_google_protobuf_wrappers_proto_depIdxs = []int32{
574 0, // [0:0] is the sub-list for method output_type
575 0, // [0:0] is the sub-list for method input_type
576 0, // [0:0] is the sub-list for extension type_name
577 0, // [0:0] is the sub-list for extension extendee
578 0, // [0:0] is the sub-list for field type_name
579}
580
581func init() { file_google_protobuf_wrappers_proto_init() }
582func file_google_protobuf_wrappers_proto_init() {
583 if File_google_protobuf_wrappers_proto != nil {
584 return
585 }
586 if !protoimpl.UnsafeEnabled {
587 file_google_protobuf_wrappers_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
588 switch v := v.(*DoubleValue); i {
589 case 0:
590 return &v.state
591 case 1:
592 return &v.sizeCache
593 case 2:
594 return &v.unknownFields
595 default:
596 return nil
597 }
598 }
599 file_google_protobuf_wrappers_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
600 switch v := v.(*FloatValue); i {
601 case 0:
602 return &v.state
603 case 1:
604 return &v.sizeCache
605 case 2:
606 return &v.unknownFields
607 default:
608 return nil
609 }
610 }
611 file_google_protobuf_wrappers_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
612 switch v := v.(*Int64Value); i {
613 case 0:
614 return &v.state
615 case 1:
616 return &v.sizeCache
617 case 2:
618 return &v.unknownFields
619 default:
620 return nil
621 }
622 }
623 file_google_protobuf_wrappers_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
624 switch v := v.(*UInt64Value); i {
625 case 0:
626 return &v.state
627 case 1:
628 return &v.sizeCache
629 case 2:
630 return &v.unknownFields
631 default:
632 return nil
633 }
634 }
635 file_google_protobuf_wrappers_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
636 switch v := v.(*Int32Value); i {
637 case 0:
638 return &v.state
639 case 1:
640 return &v.sizeCache
641 case 2:
642 return &v.unknownFields
643 default:
644 return nil
645 }
646 }
647 file_google_protobuf_wrappers_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
648 switch v := v.(*UInt32Value); i {
649 case 0:
650 return &v.state
651 case 1:
652 return &v.sizeCache
653 case 2:
654 return &v.unknownFields
655 default:
656 return nil
657 }
658 }
659 file_google_protobuf_wrappers_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
660 switch v := v.(*BoolValue); i {
661 case 0:
662 return &v.state
663 case 1:
664 return &v.sizeCache
665 case 2:
666 return &v.unknownFields
667 default:
668 return nil
669 }
670 }
671 file_google_protobuf_wrappers_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
672 switch v := v.(*StringValue); i {
673 case 0:
674 return &v.state
675 case 1:
676 return &v.sizeCache
677 case 2:
678 return &v.unknownFields
679 default:
680 return nil
681 }
682 }
683 file_google_protobuf_wrappers_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
684 switch v := v.(*BytesValue); i {
685 case 0:
686 return &v.state
687 case 1:
688 return &v.sizeCache
689 case 2:
690 return &v.unknownFields
691 default:
692 return nil
693 }
694 }
695 }
696 type x struct{}
697 out := protoimpl.TypeBuilder{
698 File: protoimpl.DescBuilder{
699 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
700 RawDescriptor: file_google_protobuf_wrappers_proto_rawDesc,
701 NumEnums: 0,
702 NumMessages: 9,
703 NumExtensions: 0,
704 NumServices: 0,
705 },
706 GoTypes: file_google_protobuf_wrappers_proto_goTypes,
707 DependencyIndexes: file_google_protobuf_wrappers_proto_depIdxs,
708 MessageInfos: file_google_protobuf_wrappers_proto_msgTypes,
709 }.Build()
710 File_google_protobuf_wrappers_proto = out.File
711 file_google_protobuf_wrappers_proto_rawDesc = nil
712 file_google_protobuf_wrappers_proto_goTypes = nil
713 file_google_protobuf_wrappers_proto_depIdxs = nil
714}