struct.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/struct.proto
  3. package known_proto
  4. import (
  5. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  6. protoregistry "google.golang.org/protobuf/reflect/protoregistry"
  7. protoiface "google.golang.org/protobuf/runtime/protoiface"
  8. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  9. sync "sync"
  10. )
  11. const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
  12. // `NullValue` is a singleton enumeration to represent the null value for the
  13. // `Value` type union.
  14. //
  15. // The JSON representation for `NullValue` is JSON `null`.
  16. type NullValue int32
  17. const (
  18. // Null value.
  19. NullValue_NULL_VALUE NullValue = 0
  20. )
  21. // Deprecated: Use NullValue.Type.Values instead.
  22. var NullValue_name = map[int32]string{
  23. 0: "NULL_VALUE",
  24. }
  25. // Deprecated: Use NullValue.Type.Values instead.
  26. var NullValue_value = map[string]int32{
  27. "NULL_VALUE": 0,
  28. }
  29. func (x NullValue) String() string {
  30. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  31. }
  32. func (NullValue) Descriptor() protoreflect.EnumDescriptor {
  33. return file_google_protobuf_struct_proto_enumTypes[0].Descriptor()
  34. }
  35. // Deprecated: Use Descriptor instead.
  36. func (NullValue) Type() protoreflect.EnumType {
  37. return file_google_protobuf_struct_proto_enumTypes[0]
  38. }
  39. func (x NullValue) Number() protoreflect.EnumNumber {
  40. return protoreflect.EnumNumber(x)
  41. }
  42. // Deprecated: Use NullValue.Type instead.
  43. func (NullValue) EnumDescriptor() ([]byte, []int) {
  44. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{0}
  45. }
  46. func (NullValue) XXX_WellKnownType() string { return "NullValue" }
  47. // `Struct` represents a structured data value, consisting of fields
  48. // which map to dynamically typed values. In some languages, `Struct`
  49. // might be supported by a native representation. For example, in
  50. // scripting languages like JS a struct is represented as an
  51. // object. The details of that representation are described together
  52. // with the proto support for the language.
  53. //
  54. // The JSON representation for `Struct` is JSON object.
  55. type Struct struct {
  56. // Unordered map of dynamically typed values.
  57. Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  58. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  59. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  60. XXX_sizecache protoimpl.SizeCache `json:"-"`
  61. }
  62. func (x *Struct) Reset() {
  63. *x = Struct{}
  64. }
  65. func (x *Struct) String() string {
  66. return protoimpl.X.MessageStringOf(x)
  67. }
  68. func (*Struct) ProtoMessage() {}
  69. func (x *Struct) ProtoReflect() protoreflect.Message {
  70. return file_google_protobuf_struct_proto_msgTypes[0].MessageOf(x)
  71. }
  72. func (m *Struct) XXX_Methods() *protoiface.Methods {
  73. return file_google_protobuf_struct_proto_msgTypes[0].Methods()
  74. }
  75. // Deprecated: Use Struct.ProtoReflect.Type instead.
  76. func (*Struct) Descriptor() ([]byte, []int) {
  77. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{0}
  78. }
  79. func (*Struct) XXX_WellKnownType() string { return "Struct" }
  80. func (x *Struct) GetFields() map[string]*Value {
  81. if x != nil {
  82. return x.Fields
  83. }
  84. return nil
  85. }
  86. // `Value` represents a dynamically typed value which can be either
  87. // null, a number, a string, a boolean, a recursive struct value, or a
  88. // list of values. A producer of value is expected to set one of that
  89. // variants, absence of any variant indicates an error.
  90. //
  91. // The JSON representation for `Value` is JSON value.
  92. type Value struct {
  93. // The kind of value.
  94. //
  95. // Types that are valid to be assigned to Kind:
  96. // Represents a null value.
  97. // *Value_NullValue
  98. // Represents a double value.
  99. // *Value_NumberValue
  100. // Represents a string value.
  101. // *Value_StringValue
  102. // Represents a boolean value.
  103. // *Value_BoolValue
  104. // Represents a structured value.
  105. // *Value_StructValue
  106. // Represents a repeated `Value`.
  107. // *Value_ListValue
  108. Kind isValue_Kind `protobuf_oneof:"kind"`
  109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  110. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  111. XXX_sizecache protoimpl.SizeCache `json:"-"`
  112. }
  113. func (x *Value) Reset() {
  114. *x = Value{}
  115. }
  116. func (x *Value) String() string {
  117. return protoimpl.X.MessageStringOf(x)
  118. }
  119. func (*Value) ProtoMessage() {}
  120. func (x *Value) ProtoReflect() protoreflect.Message {
  121. return file_google_protobuf_struct_proto_msgTypes[1].MessageOf(x)
  122. }
  123. func (m *Value) XXX_Methods() *protoiface.Methods {
  124. return file_google_protobuf_struct_proto_msgTypes[1].Methods()
  125. }
  126. // Deprecated: Use Value.ProtoReflect.Type instead.
  127. func (*Value) Descriptor() ([]byte, []int) {
  128. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{1}
  129. }
  130. func (*Value) XXX_WellKnownType() string { return "Value" }
  131. func (m *Value) GetKind() isValue_Kind {
  132. if m != nil {
  133. return m.Kind
  134. }
  135. return nil
  136. }
  137. func (x *Value) GetNullValue() NullValue {
  138. if x, ok := x.GetKind().(*Value_NullValue); ok {
  139. return x.NullValue
  140. }
  141. return NullValue_NULL_VALUE
  142. }
  143. func (x *Value) GetNumberValue() float64 {
  144. if x, ok := x.GetKind().(*Value_NumberValue); ok {
  145. return x.NumberValue
  146. }
  147. return 0
  148. }
  149. func (x *Value) GetStringValue() string {
  150. if x, ok := x.GetKind().(*Value_StringValue); ok {
  151. return x.StringValue
  152. }
  153. return ""
  154. }
  155. func (x *Value) GetBoolValue() bool {
  156. if x, ok := x.GetKind().(*Value_BoolValue); ok {
  157. return x.BoolValue
  158. }
  159. return false
  160. }
  161. func (x *Value) GetStructValue() *Struct {
  162. if x, ok := x.GetKind().(*Value_StructValue); ok {
  163. return x.StructValue
  164. }
  165. return nil
  166. }
  167. func (x *Value) GetListValue() *ListValue {
  168. if x, ok := x.GetKind().(*Value_ListValue); ok {
  169. return x.ListValue
  170. }
  171. return nil
  172. }
  173. // XXX_OneofWrappers is for the internal use of the proto package.
  174. func (*Value) XXX_OneofWrappers() []interface{} {
  175. return []interface{}{
  176. (*Value_NullValue)(nil),
  177. (*Value_NumberValue)(nil),
  178. (*Value_StringValue)(nil),
  179. (*Value_BoolValue)(nil),
  180. (*Value_StructValue)(nil),
  181. (*Value_ListValue)(nil),
  182. }
  183. }
  184. type isValue_Kind interface {
  185. isValue_Kind()
  186. }
  187. type Value_NullValue struct {
  188. NullValue NullValue `protobuf:"varint,1,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"`
  189. }
  190. type Value_NumberValue struct {
  191. NumberValue float64 `protobuf:"fixed64,2,opt,name=number_value,json=numberValue,proto3,oneof"`
  192. }
  193. type Value_StringValue struct {
  194. StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,proto3,oneof"`
  195. }
  196. type Value_BoolValue struct {
  197. BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,proto3,oneof"`
  198. }
  199. type Value_StructValue struct {
  200. StructValue *Struct `protobuf:"bytes,5,opt,name=struct_value,json=structValue,proto3,oneof"`
  201. }
  202. type Value_ListValue struct {
  203. ListValue *ListValue `protobuf:"bytes,6,opt,name=list_value,json=listValue,proto3,oneof"`
  204. }
  205. func (*Value_NullValue) isValue_Kind() {}
  206. func (*Value_NumberValue) isValue_Kind() {}
  207. func (*Value_StringValue) isValue_Kind() {}
  208. func (*Value_BoolValue) isValue_Kind() {}
  209. func (*Value_StructValue) isValue_Kind() {}
  210. func (*Value_ListValue) isValue_Kind() {}
  211. // `ListValue` is a wrapper around a repeated field of values.
  212. //
  213. // The JSON representation for `ListValue` is JSON array.
  214. type ListValue struct {
  215. // Repeated field of dynamically typed values.
  216. Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
  217. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  218. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  219. XXX_sizecache protoimpl.SizeCache `json:"-"`
  220. }
  221. func (x *ListValue) Reset() {
  222. *x = ListValue{}
  223. }
  224. func (x *ListValue) String() string {
  225. return protoimpl.X.MessageStringOf(x)
  226. }
  227. func (*ListValue) ProtoMessage() {}
  228. func (x *ListValue) ProtoReflect() protoreflect.Message {
  229. return file_google_protobuf_struct_proto_msgTypes[2].MessageOf(x)
  230. }
  231. func (m *ListValue) XXX_Methods() *protoiface.Methods {
  232. return file_google_protobuf_struct_proto_msgTypes[2].Methods()
  233. }
  234. // Deprecated: Use ListValue.ProtoReflect.Type instead.
  235. func (*ListValue) Descriptor() ([]byte, []int) {
  236. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{2}
  237. }
  238. func (*ListValue) XXX_WellKnownType() string { return "ListValue" }
  239. func (x *ListValue) GetValues() []*Value {
  240. if x != nil {
  241. return x.Values
  242. }
  243. return nil
  244. }
  245. var File_google_protobuf_struct_proto protoreflect.FileDescriptor
  246. var file_google_protobuf_struct_proto_rawDesc = []byte{
  247. 0x0a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  248. 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f,
  249. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x22,
  250. 0x98, 0x01, 0x0a, 0x06, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x3b, 0x0a, 0x06, 0x66, 0x69,
  251. 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x67, 0x6f, 0x6f,
  252. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72,
  253. 0x75, 0x63, 0x74, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  254. 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x1a, 0x51, 0x0a, 0x0b, 0x46, 0x69, 0x65, 0x6c, 0x64,
  255. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  256. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  257. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  258. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  259. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb2, 0x02, 0x0a, 0x05, 0x56,
  260. 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6e, 0x75, 0x6c, 0x6c, 0x5f, 0x76, 0x61, 0x6c,
  261. 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  262. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4e, 0x75, 0x6c, 0x6c, 0x56,
  263. 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75,
  264. 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75,
  265. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x6e, 0x75, 0x6d, 0x62, 0x65,
  266. 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  267. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b,
  268. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1f, 0x0a, 0x0a, 0x62,
  269. 0x6f, 0x6f, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x48,
  270. 0x00, 0x52, 0x09, 0x62, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3c, 0x0a, 0x0c,
  271. 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01,
  272. 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  273. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x73,
  274. 0x74, 0x72, 0x75, 0x63, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6c, 0x69,
  275. 0x73, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
  276. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  277. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69,
  278. 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x22,
  279. 0x3b, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x2e, 0x0a, 0x06,
  280. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67,
  281. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56,
  282. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x2a, 0x1b, 0x0a, 0x09,
  283. 0x4e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x0e, 0x0a, 0x0a, 0x4e, 0x55, 0x4c,
  284. 0x4c, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x00, 0x42, 0x82, 0x01, 0x0a, 0x13, 0x63, 0x6f,
  285. 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  286. 0x66, 0x42, 0x0b, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
  287. 0x5a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
  288. 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x79, 0x70,
  289. 0x65, 0x73, 0x2f, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x3b, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x70,
  290. 0x72, 0x6f, 0x74, 0x6f, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x03, 0x47, 0x50, 0x42, 0xaa, 0x02, 0x1e,
  291. 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  292. 0x57, 0x65, 0x6c, 0x6c, 0x4b, 0x6e, 0x6f, 0x77, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x62, 0x06,
  293. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  294. }
  295. var (
  296. file_google_protobuf_struct_proto_rawDescOnce sync.Once
  297. file_google_protobuf_struct_proto_rawDescData = file_google_protobuf_struct_proto_rawDesc
  298. )
  299. func file_google_protobuf_struct_proto_rawDescGZIP() []byte {
  300. file_google_protobuf_struct_proto_rawDescOnce.Do(func() {
  301. file_google_protobuf_struct_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_protobuf_struct_proto_rawDescData)
  302. })
  303. return file_google_protobuf_struct_proto_rawDescData
  304. }
  305. var file_google_protobuf_struct_proto_enumTypes = make([]protoreflect.EnumType, 1)
  306. var file_google_protobuf_struct_proto_msgTypes = make([]protoimpl.MessageType, 4)
  307. var file_google_protobuf_struct_proto_goTypes = []interface{}{
  308. (NullValue)(0), // 0: google.protobuf.NullValue
  309. (*Struct)(nil), // 1: google.protobuf.Struct
  310. (*Value)(nil), // 2: google.protobuf.Value
  311. (*ListValue)(nil), // 3: google.protobuf.ListValue
  312. nil, // 4: google.protobuf.Struct.FieldsEntry
  313. }
  314. var file_google_protobuf_struct_proto_depIdxs = []int32{
  315. 4, // google.protobuf.Struct.fields:type_name -> google.protobuf.Struct.FieldsEntry
  316. 0, // google.protobuf.Value.null_value:type_name -> google.protobuf.NullValue
  317. 1, // google.protobuf.Value.struct_value:type_name -> google.protobuf.Struct
  318. 3, // google.protobuf.Value.list_value:type_name -> google.protobuf.ListValue
  319. 2, // google.protobuf.ListValue.values:type_name -> google.protobuf.Value
  320. 2, // google.protobuf.Struct.FieldsEntry.value:type_name -> google.protobuf.Value
  321. }
  322. func init() { file_google_protobuf_struct_proto_init() }
  323. func file_google_protobuf_struct_proto_init() {
  324. if File_google_protobuf_struct_proto != nil {
  325. return
  326. }
  327. File_google_protobuf_struct_proto = protoimpl.FileBuilder{
  328. RawDescriptor: file_google_protobuf_struct_proto_rawDesc,
  329. GoTypes: file_google_protobuf_struct_proto_goTypes,
  330. DependencyIndexes: file_google_protobuf_struct_proto_depIdxs,
  331. EnumOutputTypes: file_google_protobuf_struct_proto_enumTypes,
  332. MessageOutputTypes: file_google_protobuf_struct_proto_msgTypes,
  333. FilesRegistry: protoregistry.GlobalFiles,
  334. TypesRegistry: protoregistry.GlobalTypes,
  335. }.Init()
  336. file_google_protobuf_struct_proto_rawDesc = nil
  337. file_google_protobuf_struct_proto_goTypes = nil
  338. file_google_protobuf_struct_proto_depIdxs = nil
  339. }