descriptor_gen.go 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Code generated by generate-protos. DO NOT EDIT.
  5. package genid
  6. import (
  7. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  8. )
  9. const File_google_protobuf_descriptor_proto = "google/protobuf/descriptor.proto"
  10. // Full and short names for google.protobuf.Edition.
  11. const (
  12. Edition_enum_fullname = "google.protobuf.Edition"
  13. Edition_enum_name = "Edition"
  14. )
  15. // Enum values for google.protobuf.Edition.
  16. const (
  17. Edition_EDITION_UNKNOWN_enum_value = 0
  18. Edition_EDITION_LEGACY_enum_value = 900
  19. Edition_EDITION_PROTO2_enum_value = 998
  20. Edition_EDITION_PROTO3_enum_value = 999
  21. Edition_EDITION_2023_enum_value = 1000
  22. Edition_EDITION_2024_enum_value = 1001
  23. Edition_EDITION_1_TEST_ONLY_enum_value = 1
  24. Edition_EDITION_2_TEST_ONLY_enum_value = 2
  25. Edition_EDITION_99997_TEST_ONLY_enum_value = 99997
  26. Edition_EDITION_99998_TEST_ONLY_enum_value = 99998
  27. Edition_EDITION_99999_TEST_ONLY_enum_value = 99999
  28. Edition_EDITION_MAX_enum_value = 2147483647
  29. )
  30. // Full and short names for google.protobuf.SymbolVisibility.
  31. const (
  32. SymbolVisibility_enum_fullname = "google.protobuf.SymbolVisibility"
  33. SymbolVisibility_enum_name = "SymbolVisibility"
  34. )
  35. // Enum values for google.protobuf.SymbolVisibility.
  36. const (
  37. SymbolVisibility_VISIBILITY_UNSET_enum_value = 0
  38. SymbolVisibility_VISIBILITY_LOCAL_enum_value = 1
  39. SymbolVisibility_VISIBILITY_EXPORT_enum_value = 2
  40. )
  41. // Names for google.protobuf.FileDescriptorSet.
  42. const (
  43. FileDescriptorSet_message_name protoreflect.Name = "FileDescriptorSet"
  44. FileDescriptorSet_message_fullname protoreflect.FullName = "google.protobuf.FileDescriptorSet"
  45. )
  46. // Field names for google.protobuf.FileDescriptorSet.
  47. const (
  48. FileDescriptorSet_File_field_name protoreflect.Name = "file"
  49. FileDescriptorSet_File_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorSet.file"
  50. )
  51. // Field numbers for google.protobuf.FileDescriptorSet.
  52. const (
  53. FileDescriptorSet_File_field_number protoreflect.FieldNumber = 1
  54. )
  55. // Names for google.protobuf.FileDescriptorProto.
  56. const (
  57. FileDescriptorProto_message_name protoreflect.Name = "FileDescriptorProto"
  58. FileDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto"
  59. )
  60. // Field names for google.protobuf.FileDescriptorProto.
  61. const (
  62. FileDescriptorProto_Name_field_name protoreflect.Name = "name"
  63. FileDescriptorProto_Package_field_name protoreflect.Name = "package"
  64. FileDescriptorProto_Dependency_field_name protoreflect.Name = "dependency"
  65. FileDescriptorProto_PublicDependency_field_name protoreflect.Name = "public_dependency"
  66. FileDescriptorProto_WeakDependency_field_name protoreflect.Name = "weak_dependency"
  67. FileDescriptorProto_OptionDependency_field_name protoreflect.Name = "option_dependency"
  68. FileDescriptorProto_MessageType_field_name protoreflect.Name = "message_type"
  69. FileDescriptorProto_EnumType_field_name protoreflect.Name = "enum_type"
  70. FileDescriptorProto_Service_field_name protoreflect.Name = "service"
  71. FileDescriptorProto_Extension_field_name protoreflect.Name = "extension"
  72. FileDescriptorProto_Options_field_name protoreflect.Name = "options"
  73. FileDescriptorProto_SourceCodeInfo_field_name protoreflect.Name = "source_code_info"
  74. FileDescriptorProto_Syntax_field_name protoreflect.Name = "syntax"
  75. FileDescriptorProto_Edition_field_name protoreflect.Name = "edition"
  76. FileDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.name"
  77. FileDescriptorProto_Package_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.package"
  78. FileDescriptorProto_Dependency_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.dependency"
  79. FileDescriptorProto_PublicDependency_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.public_dependency"
  80. FileDescriptorProto_WeakDependency_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.weak_dependency"
  81. FileDescriptorProto_OptionDependency_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.option_dependency"
  82. FileDescriptorProto_MessageType_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.message_type"
  83. FileDescriptorProto_EnumType_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.enum_type"
  84. FileDescriptorProto_Service_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.service"
  85. FileDescriptorProto_Extension_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.extension"
  86. FileDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.options"
  87. FileDescriptorProto_SourceCodeInfo_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.source_code_info"
  88. FileDescriptorProto_Syntax_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.syntax"
  89. FileDescriptorProto_Edition_field_fullname protoreflect.FullName = "google.protobuf.FileDescriptorProto.edition"
  90. )
  91. // Field numbers for google.protobuf.FileDescriptorProto.
  92. const (
  93. FileDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  94. FileDescriptorProto_Package_field_number protoreflect.FieldNumber = 2
  95. FileDescriptorProto_Dependency_field_number protoreflect.FieldNumber = 3
  96. FileDescriptorProto_PublicDependency_field_number protoreflect.FieldNumber = 10
  97. FileDescriptorProto_WeakDependency_field_number protoreflect.FieldNumber = 11
  98. FileDescriptorProto_OptionDependency_field_number protoreflect.FieldNumber = 15
  99. FileDescriptorProto_MessageType_field_number protoreflect.FieldNumber = 4
  100. FileDescriptorProto_EnumType_field_number protoreflect.FieldNumber = 5
  101. FileDescriptorProto_Service_field_number protoreflect.FieldNumber = 6
  102. FileDescriptorProto_Extension_field_number protoreflect.FieldNumber = 7
  103. FileDescriptorProto_Options_field_number protoreflect.FieldNumber = 8
  104. FileDescriptorProto_SourceCodeInfo_field_number protoreflect.FieldNumber = 9
  105. FileDescriptorProto_Syntax_field_number protoreflect.FieldNumber = 12
  106. FileDescriptorProto_Edition_field_number protoreflect.FieldNumber = 14
  107. )
  108. // Names for google.protobuf.DescriptorProto.
  109. const (
  110. DescriptorProto_message_name protoreflect.Name = "DescriptorProto"
  111. DescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.DescriptorProto"
  112. )
  113. // Field names for google.protobuf.DescriptorProto.
  114. const (
  115. DescriptorProto_Name_field_name protoreflect.Name = "name"
  116. DescriptorProto_Field_field_name protoreflect.Name = "field"
  117. DescriptorProto_Extension_field_name protoreflect.Name = "extension"
  118. DescriptorProto_NestedType_field_name protoreflect.Name = "nested_type"
  119. DescriptorProto_EnumType_field_name protoreflect.Name = "enum_type"
  120. DescriptorProto_ExtensionRange_field_name protoreflect.Name = "extension_range"
  121. DescriptorProto_OneofDecl_field_name protoreflect.Name = "oneof_decl"
  122. DescriptorProto_Options_field_name protoreflect.Name = "options"
  123. DescriptorProto_ReservedRange_field_name protoreflect.Name = "reserved_range"
  124. DescriptorProto_ReservedName_field_name protoreflect.Name = "reserved_name"
  125. DescriptorProto_Visibility_field_name protoreflect.Name = "visibility"
  126. DescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.name"
  127. DescriptorProto_Field_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.field"
  128. DescriptorProto_Extension_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.extension"
  129. DescriptorProto_NestedType_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.nested_type"
  130. DescriptorProto_EnumType_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.enum_type"
  131. DescriptorProto_ExtensionRange_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.extension_range"
  132. DescriptorProto_OneofDecl_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.oneof_decl"
  133. DescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.options"
  134. DescriptorProto_ReservedRange_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.reserved_range"
  135. DescriptorProto_ReservedName_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.reserved_name"
  136. DescriptorProto_Visibility_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.visibility"
  137. )
  138. // Field numbers for google.protobuf.DescriptorProto.
  139. const (
  140. DescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  141. DescriptorProto_Field_field_number protoreflect.FieldNumber = 2
  142. DescriptorProto_Extension_field_number protoreflect.FieldNumber = 6
  143. DescriptorProto_NestedType_field_number protoreflect.FieldNumber = 3
  144. DescriptorProto_EnumType_field_number protoreflect.FieldNumber = 4
  145. DescriptorProto_ExtensionRange_field_number protoreflect.FieldNumber = 5
  146. DescriptorProto_OneofDecl_field_number protoreflect.FieldNumber = 8
  147. DescriptorProto_Options_field_number protoreflect.FieldNumber = 7
  148. DescriptorProto_ReservedRange_field_number protoreflect.FieldNumber = 9
  149. DescriptorProto_ReservedName_field_number protoreflect.FieldNumber = 10
  150. DescriptorProto_Visibility_field_number protoreflect.FieldNumber = 11
  151. )
  152. // Names for google.protobuf.DescriptorProto.ExtensionRange.
  153. const (
  154. DescriptorProto_ExtensionRange_message_name protoreflect.Name = "ExtensionRange"
  155. DescriptorProto_ExtensionRange_message_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ExtensionRange"
  156. )
  157. // Field names for google.protobuf.DescriptorProto.ExtensionRange.
  158. const (
  159. DescriptorProto_ExtensionRange_Start_field_name protoreflect.Name = "start"
  160. DescriptorProto_ExtensionRange_End_field_name protoreflect.Name = "end"
  161. DescriptorProto_ExtensionRange_Options_field_name protoreflect.Name = "options"
  162. DescriptorProto_ExtensionRange_Start_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ExtensionRange.start"
  163. DescriptorProto_ExtensionRange_End_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ExtensionRange.end"
  164. DescriptorProto_ExtensionRange_Options_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ExtensionRange.options"
  165. )
  166. // Field numbers for google.protobuf.DescriptorProto.ExtensionRange.
  167. const (
  168. DescriptorProto_ExtensionRange_Start_field_number protoreflect.FieldNumber = 1
  169. DescriptorProto_ExtensionRange_End_field_number protoreflect.FieldNumber = 2
  170. DescriptorProto_ExtensionRange_Options_field_number protoreflect.FieldNumber = 3
  171. )
  172. // Names for google.protobuf.DescriptorProto.ReservedRange.
  173. const (
  174. DescriptorProto_ReservedRange_message_name protoreflect.Name = "ReservedRange"
  175. DescriptorProto_ReservedRange_message_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ReservedRange"
  176. )
  177. // Field names for google.protobuf.DescriptorProto.ReservedRange.
  178. const (
  179. DescriptorProto_ReservedRange_Start_field_name protoreflect.Name = "start"
  180. DescriptorProto_ReservedRange_End_field_name protoreflect.Name = "end"
  181. DescriptorProto_ReservedRange_Start_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ReservedRange.start"
  182. DescriptorProto_ReservedRange_End_field_fullname protoreflect.FullName = "google.protobuf.DescriptorProto.ReservedRange.end"
  183. )
  184. // Field numbers for google.protobuf.DescriptorProto.ReservedRange.
  185. const (
  186. DescriptorProto_ReservedRange_Start_field_number protoreflect.FieldNumber = 1
  187. DescriptorProto_ReservedRange_End_field_number protoreflect.FieldNumber = 2
  188. )
  189. // Names for google.protobuf.ExtensionRangeOptions.
  190. const (
  191. ExtensionRangeOptions_message_name protoreflect.Name = "ExtensionRangeOptions"
  192. ExtensionRangeOptions_message_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions"
  193. )
  194. // Field names for google.protobuf.ExtensionRangeOptions.
  195. const (
  196. ExtensionRangeOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  197. ExtensionRangeOptions_Declaration_field_name protoreflect.Name = "declaration"
  198. ExtensionRangeOptions_Features_field_name protoreflect.Name = "features"
  199. ExtensionRangeOptions_Verification_field_name protoreflect.Name = "verification"
  200. ExtensionRangeOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.uninterpreted_option"
  201. ExtensionRangeOptions_Declaration_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.declaration"
  202. ExtensionRangeOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.features"
  203. ExtensionRangeOptions_Verification_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.verification"
  204. )
  205. // Field numbers for google.protobuf.ExtensionRangeOptions.
  206. const (
  207. ExtensionRangeOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  208. ExtensionRangeOptions_Declaration_field_number protoreflect.FieldNumber = 2
  209. ExtensionRangeOptions_Features_field_number protoreflect.FieldNumber = 50
  210. ExtensionRangeOptions_Verification_field_number protoreflect.FieldNumber = 3
  211. )
  212. // Full and short names for google.protobuf.ExtensionRangeOptions.VerificationState.
  213. const (
  214. ExtensionRangeOptions_VerificationState_enum_fullname = "google.protobuf.ExtensionRangeOptions.VerificationState"
  215. ExtensionRangeOptions_VerificationState_enum_name = "VerificationState"
  216. )
  217. // Enum values for google.protobuf.ExtensionRangeOptions.VerificationState.
  218. const (
  219. ExtensionRangeOptions_DECLARATION_enum_value = 0
  220. ExtensionRangeOptions_UNVERIFIED_enum_value = 1
  221. )
  222. // Names for google.protobuf.ExtensionRangeOptions.Declaration.
  223. const (
  224. ExtensionRangeOptions_Declaration_message_name protoreflect.Name = "Declaration"
  225. ExtensionRangeOptions_Declaration_message_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration"
  226. )
  227. // Field names for google.protobuf.ExtensionRangeOptions.Declaration.
  228. const (
  229. ExtensionRangeOptions_Declaration_Number_field_name protoreflect.Name = "number"
  230. ExtensionRangeOptions_Declaration_FullName_field_name protoreflect.Name = "full_name"
  231. ExtensionRangeOptions_Declaration_Type_field_name protoreflect.Name = "type"
  232. ExtensionRangeOptions_Declaration_Reserved_field_name protoreflect.Name = "reserved"
  233. ExtensionRangeOptions_Declaration_Repeated_field_name protoreflect.Name = "repeated"
  234. ExtensionRangeOptions_Declaration_Number_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration.number"
  235. ExtensionRangeOptions_Declaration_FullName_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration.full_name"
  236. ExtensionRangeOptions_Declaration_Type_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration.type"
  237. ExtensionRangeOptions_Declaration_Reserved_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration.reserved"
  238. ExtensionRangeOptions_Declaration_Repeated_field_fullname protoreflect.FullName = "google.protobuf.ExtensionRangeOptions.Declaration.repeated"
  239. )
  240. // Field numbers for google.protobuf.ExtensionRangeOptions.Declaration.
  241. const (
  242. ExtensionRangeOptions_Declaration_Number_field_number protoreflect.FieldNumber = 1
  243. ExtensionRangeOptions_Declaration_FullName_field_number protoreflect.FieldNumber = 2
  244. ExtensionRangeOptions_Declaration_Type_field_number protoreflect.FieldNumber = 3
  245. ExtensionRangeOptions_Declaration_Reserved_field_number protoreflect.FieldNumber = 5
  246. ExtensionRangeOptions_Declaration_Repeated_field_number protoreflect.FieldNumber = 6
  247. )
  248. // Names for google.protobuf.FieldDescriptorProto.
  249. const (
  250. FieldDescriptorProto_message_name protoreflect.Name = "FieldDescriptorProto"
  251. FieldDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto"
  252. )
  253. // Field names for google.protobuf.FieldDescriptorProto.
  254. const (
  255. FieldDescriptorProto_Name_field_name protoreflect.Name = "name"
  256. FieldDescriptorProto_Number_field_name protoreflect.Name = "number"
  257. FieldDescriptorProto_Label_field_name protoreflect.Name = "label"
  258. FieldDescriptorProto_Type_field_name protoreflect.Name = "type"
  259. FieldDescriptorProto_TypeName_field_name protoreflect.Name = "type_name"
  260. FieldDescriptorProto_Extendee_field_name protoreflect.Name = "extendee"
  261. FieldDescriptorProto_DefaultValue_field_name protoreflect.Name = "default_value"
  262. FieldDescriptorProto_OneofIndex_field_name protoreflect.Name = "oneof_index"
  263. FieldDescriptorProto_JsonName_field_name protoreflect.Name = "json_name"
  264. FieldDescriptorProto_Options_field_name protoreflect.Name = "options"
  265. FieldDescriptorProto_Proto3Optional_field_name protoreflect.Name = "proto3_optional"
  266. FieldDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.name"
  267. FieldDescriptorProto_Number_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.number"
  268. FieldDescriptorProto_Label_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.label"
  269. FieldDescriptorProto_Type_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.type"
  270. FieldDescriptorProto_TypeName_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.type_name"
  271. FieldDescriptorProto_Extendee_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.extendee"
  272. FieldDescriptorProto_DefaultValue_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.default_value"
  273. FieldDescriptorProto_OneofIndex_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.oneof_index"
  274. FieldDescriptorProto_JsonName_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.json_name"
  275. FieldDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.options"
  276. FieldDescriptorProto_Proto3Optional_field_fullname protoreflect.FullName = "google.protobuf.FieldDescriptorProto.proto3_optional"
  277. )
  278. // Field numbers for google.protobuf.FieldDescriptorProto.
  279. const (
  280. FieldDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  281. FieldDescriptorProto_Number_field_number protoreflect.FieldNumber = 3
  282. FieldDescriptorProto_Label_field_number protoreflect.FieldNumber = 4
  283. FieldDescriptorProto_Type_field_number protoreflect.FieldNumber = 5
  284. FieldDescriptorProto_TypeName_field_number protoreflect.FieldNumber = 6
  285. FieldDescriptorProto_Extendee_field_number protoreflect.FieldNumber = 2
  286. FieldDescriptorProto_DefaultValue_field_number protoreflect.FieldNumber = 7
  287. FieldDescriptorProto_OneofIndex_field_number protoreflect.FieldNumber = 9
  288. FieldDescriptorProto_JsonName_field_number protoreflect.FieldNumber = 10
  289. FieldDescriptorProto_Options_field_number protoreflect.FieldNumber = 8
  290. FieldDescriptorProto_Proto3Optional_field_number protoreflect.FieldNumber = 17
  291. )
  292. // Full and short names for google.protobuf.FieldDescriptorProto.Type.
  293. const (
  294. FieldDescriptorProto_Type_enum_fullname = "google.protobuf.FieldDescriptorProto.Type"
  295. FieldDescriptorProto_Type_enum_name = "Type"
  296. )
  297. // Enum values for google.protobuf.FieldDescriptorProto.Type.
  298. const (
  299. FieldDescriptorProto_TYPE_DOUBLE_enum_value = 1
  300. FieldDescriptorProto_TYPE_FLOAT_enum_value = 2
  301. FieldDescriptorProto_TYPE_INT64_enum_value = 3
  302. FieldDescriptorProto_TYPE_UINT64_enum_value = 4
  303. FieldDescriptorProto_TYPE_INT32_enum_value = 5
  304. FieldDescriptorProto_TYPE_FIXED64_enum_value = 6
  305. FieldDescriptorProto_TYPE_FIXED32_enum_value = 7
  306. FieldDescriptorProto_TYPE_BOOL_enum_value = 8
  307. FieldDescriptorProto_TYPE_STRING_enum_value = 9
  308. FieldDescriptorProto_TYPE_GROUP_enum_value = 10
  309. FieldDescriptorProto_TYPE_MESSAGE_enum_value = 11
  310. FieldDescriptorProto_TYPE_BYTES_enum_value = 12
  311. FieldDescriptorProto_TYPE_UINT32_enum_value = 13
  312. FieldDescriptorProto_TYPE_ENUM_enum_value = 14
  313. FieldDescriptorProto_TYPE_SFIXED32_enum_value = 15
  314. FieldDescriptorProto_TYPE_SFIXED64_enum_value = 16
  315. FieldDescriptorProto_TYPE_SINT32_enum_value = 17
  316. FieldDescriptorProto_TYPE_SINT64_enum_value = 18
  317. )
  318. // Full and short names for google.protobuf.FieldDescriptorProto.Label.
  319. const (
  320. FieldDescriptorProto_Label_enum_fullname = "google.protobuf.FieldDescriptorProto.Label"
  321. FieldDescriptorProto_Label_enum_name = "Label"
  322. )
  323. // Enum values for google.protobuf.FieldDescriptorProto.Label.
  324. const (
  325. FieldDescriptorProto_LABEL_OPTIONAL_enum_value = 1
  326. FieldDescriptorProto_LABEL_REPEATED_enum_value = 3
  327. FieldDescriptorProto_LABEL_REQUIRED_enum_value = 2
  328. )
  329. // Names for google.protobuf.OneofDescriptorProto.
  330. const (
  331. OneofDescriptorProto_message_name protoreflect.Name = "OneofDescriptorProto"
  332. OneofDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.OneofDescriptorProto"
  333. )
  334. // Field names for google.protobuf.OneofDescriptorProto.
  335. const (
  336. OneofDescriptorProto_Name_field_name protoreflect.Name = "name"
  337. OneofDescriptorProto_Options_field_name protoreflect.Name = "options"
  338. OneofDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.OneofDescriptorProto.name"
  339. OneofDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.OneofDescriptorProto.options"
  340. )
  341. // Field numbers for google.protobuf.OneofDescriptorProto.
  342. const (
  343. OneofDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  344. OneofDescriptorProto_Options_field_number protoreflect.FieldNumber = 2
  345. )
  346. // Names for google.protobuf.EnumDescriptorProto.
  347. const (
  348. EnumDescriptorProto_message_name protoreflect.Name = "EnumDescriptorProto"
  349. EnumDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto"
  350. )
  351. // Field names for google.protobuf.EnumDescriptorProto.
  352. const (
  353. EnumDescriptorProto_Name_field_name protoreflect.Name = "name"
  354. EnumDescriptorProto_Value_field_name protoreflect.Name = "value"
  355. EnumDescriptorProto_Options_field_name protoreflect.Name = "options"
  356. EnumDescriptorProto_ReservedRange_field_name protoreflect.Name = "reserved_range"
  357. EnumDescriptorProto_ReservedName_field_name protoreflect.Name = "reserved_name"
  358. EnumDescriptorProto_Visibility_field_name protoreflect.Name = "visibility"
  359. EnumDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.name"
  360. EnumDescriptorProto_Value_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.value"
  361. EnumDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.options"
  362. EnumDescriptorProto_ReservedRange_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.reserved_range"
  363. EnumDescriptorProto_ReservedName_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.reserved_name"
  364. EnumDescriptorProto_Visibility_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.visibility"
  365. )
  366. // Field numbers for google.protobuf.EnumDescriptorProto.
  367. const (
  368. EnumDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  369. EnumDescriptorProto_Value_field_number protoreflect.FieldNumber = 2
  370. EnumDescriptorProto_Options_field_number protoreflect.FieldNumber = 3
  371. EnumDescriptorProto_ReservedRange_field_number protoreflect.FieldNumber = 4
  372. EnumDescriptorProto_ReservedName_field_number protoreflect.FieldNumber = 5
  373. EnumDescriptorProto_Visibility_field_number protoreflect.FieldNumber = 6
  374. )
  375. // Names for google.protobuf.EnumDescriptorProto.EnumReservedRange.
  376. const (
  377. EnumDescriptorProto_EnumReservedRange_message_name protoreflect.Name = "EnumReservedRange"
  378. EnumDescriptorProto_EnumReservedRange_message_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.EnumReservedRange"
  379. )
  380. // Field names for google.protobuf.EnumDescriptorProto.EnumReservedRange.
  381. const (
  382. EnumDescriptorProto_EnumReservedRange_Start_field_name protoreflect.Name = "start"
  383. EnumDescriptorProto_EnumReservedRange_End_field_name protoreflect.Name = "end"
  384. EnumDescriptorProto_EnumReservedRange_Start_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.EnumReservedRange.start"
  385. EnumDescriptorProto_EnumReservedRange_End_field_fullname protoreflect.FullName = "google.protobuf.EnumDescriptorProto.EnumReservedRange.end"
  386. )
  387. // Field numbers for google.protobuf.EnumDescriptorProto.EnumReservedRange.
  388. const (
  389. EnumDescriptorProto_EnumReservedRange_Start_field_number protoreflect.FieldNumber = 1
  390. EnumDescriptorProto_EnumReservedRange_End_field_number protoreflect.FieldNumber = 2
  391. )
  392. // Names for google.protobuf.EnumValueDescriptorProto.
  393. const (
  394. EnumValueDescriptorProto_message_name protoreflect.Name = "EnumValueDescriptorProto"
  395. EnumValueDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.EnumValueDescriptorProto"
  396. )
  397. // Field names for google.protobuf.EnumValueDescriptorProto.
  398. const (
  399. EnumValueDescriptorProto_Name_field_name protoreflect.Name = "name"
  400. EnumValueDescriptorProto_Number_field_name protoreflect.Name = "number"
  401. EnumValueDescriptorProto_Options_field_name protoreflect.Name = "options"
  402. EnumValueDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.EnumValueDescriptorProto.name"
  403. EnumValueDescriptorProto_Number_field_fullname protoreflect.FullName = "google.protobuf.EnumValueDescriptorProto.number"
  404. EnumValueDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.EnumValueDescriptorProto.options"
  405. )
  406. // Field numbers for google.protobuf.EnumValueDescriptorProto.
  407. const (
  408. EnumValueDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  409. EnumValueDescriptorProto_Number_field_number protoreflect.FieldNumber = 2
  410. EnumValueDescriptorProto_Options_field_number protoreflect.FieldNumber = 3
  411. )
  412. // Names for google.protobuf.ServiceDescriptorProto.
  413. const (
  414. ServiceDescriptorProto_message_name protoreflect.Name = "ServiceDescriptorProto"
  415. ServiceDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.ServiceDescriptorProto"
  416. )
  417. // Field names for google.protobuf.ServiceDescriptorProto.
  418. const (
  419. ServiceDescriptorProto_Name_field_name protoreflect.Name = "name"
  420. ServiceDescriptorProto_Method_field_name protoreflect.Name = "method"
  421. ServiceDescriptorProto_Options_field_name protoreflect.Name = "options"
  422. ServiceDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.ServiceDescriptorProto.name"
  423. ServiceDescriptorProto_Method_field_fullname protoreflect.FullName = "google.protobuf.ServiceDescriptorProto.method"
  424. ServiceDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.ServiceDescriptorProto.options"
  425. )
  426. // Field numbers for google.protobuf.ServiceDescriptorProto.
  427. const (
  428. ServiceDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  429. ServiceDescriptorProto_Method_field_number protoreflect.FieldNumber = 2
  430. ServiceDescriptorProto_Options_field_number protoreflect.FieldNumber = 3
  431. )
  432. // Names for google.protobuf.MethodDescriptorProto.
  433. const (
  434. MethodDescriptorProto_message_name protoreflect.Name = "MethodDescriptorProto"
  435. MethodDescriptorProto_message_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto"
  436. )
  437. // Field names for google.protobuf.MethodDescriptorProto.
  438. const (
  439. MethodDescriptorProto_Name_field_name protoreflect.Name = "name"
  440. MethodDescriptorProto_InputType_field_name protoreflect.Name = "input_type"
  441. MethodDescriptorProto_OutputType_field_name protoreflect.Name = "output_type"
  442. MethodDescriptorProto_Options_field_name protoreflect.Name = "options"
  443. MethodDescriptorProto_ClientStreaming_field_name protoreflect.Name = "client_streaming"
  444. MethodDescriptorProto_ServerStreaming_field_name protoreflect.Name = "server_streaming"
  445. MethodDescriptorProto_Name_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.name"
  446. MethodDescriptorProto_InputType_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.input_type"
  447. MethodDescriptorProto_OutputType_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.output_type"
  448. MethodDescriptorProto_Options_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.options"
  449. MethodDescriptorProto_ClientStreaming_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.client_streaming"
  450. MethodDescriptorProto_ServerStreaming_field_fullname protoreflect.FullName = "google.protobuf.MethodDescriptorProto.server_streaming"
  451. )
  452. // Field numbers for google.protobuf.MethodDescriptorProto.
  453. const (
  454. MethodDescriptorProto_Name_field_number protoreflect.FieldNumber = 1
  455. MethodDescriptorProto_InputType_field_number protoreflect.FieldNumber = 2
  456. MethodDescriptorProto_OutputType_field_number protoreflect.FieldNumber = 3
  457. MethodDescriptorProto_Options_field_number protoreflect.FieldNumber = 4
  458. MethodDescriptorProto_ClientStreaming_field_number protoreflect.FieldNumber = 5
  459. MethodDescriptorProto_ServerStreaming_field_number protoreflect.FieldNumber = 6
  460. )
  461. // Names for google.protobuf.FileOptions.
  462. const (
  463. FileOptions_message_name protoreflect.Name = "FileOptions"
  464. FileOptions_message_fullname protoreflect.FullName = "google.protobuf.FileOptions"
  465. )
  466. // Field names for google.protobuf.FileOptions.
  467. const (
  468. FileOptions_JavaPackage_field_name protoreflect.Name = "java_package"
  469. FileOptions_JavaOuterClassname_field_name protoreflect.Name = "java_outer_classname"
  470. FileOptions_JavaMultipleFiles_field_name protoreflect.Name = "java_multiple_files"
  471. FileOptions_JavaGenerateEqualsAndHash_field_name protoreflect.Name = "java_generate_equals_and_hash"
  472. FileOptions_JavaStringCheckUtf8_field_name protoreflect.Name = "java_string_check_utf8"
  473. FileOptions_OptimizeFor_field_name protoreflect.Name = "optimize_for"
  474. FileOptions_GoPackage_field_name protoreflect.Name = "go_package"
  475. FileOptions_CcGenericServices_field_name protoreflect.Name = "cc_generic_services"
  476. FileOptions_JavaGenericServices_field_name protoreflect.Name = "java_generic_services"
  477. FileOptions_PyGenericServices_field_name protoreflect.Name = "py_generic_services"
  478. FileOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  479. FileOptions_CcEnableArenas_field_name protoreflect.Name = "cc_enable_arenas"
  480. FileOptions_ObjcClassPrefix_field_name protoreflect.Name = "objc_class_prefix"
  481. FileOptions_CsharpNamespace_field_name protoreflect.Name = "csharp_namespace"
  482. FileOptions_SwiftPrefix_field_name protoreflect.Name = "swift_prefix"
  483. FileOptions_PhpClassPrefix_field_name protoreflect.Name = "php_class_prefix"
  484. FileOptions_PhpNamespace_field_name protoreflect.Name = "php_namespace"
  485. FileOptions_PhpMetadataNamespace_field_name protoreflect.Name = "php_metadata_namespace"
  486. FileOptions_RubyPackage_field_name protoreflect.Name = "ruby_package"
  487. FileOptions_Features_field_name protoreflect.Name = "features"
  488. FileOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  489. FileOptions_JavaPackage_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_package"
  490. FileOptions_JavaOuterClassname_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_outer_classname"
  491. FileOptions_JavaMultipleFiles_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_multiple_files"
  492. FileOptions_JavaGenerateEqualsAndHash_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_generate_equals_and_hash"
  493. FileOptions_JavaStringCheckUtf8_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_string_check_utf8"
  494. FileOptions_OptimizeFor_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.optimize_for"
  495. FileOptions_GoPackage_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.go_package"
  496. FileOptions_CcGenericServices_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.cc_generic_services"
  497. FileOptions_JavaGenericServices_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.java_generic_services"
  498. FileOptions_PyGenericServices_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.py_generic_services"
  499. FileOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.deprecated"
  500. FileOptions_CcEnableArenas_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.cc_enable_arenas"
  501. FileOptions_ObjcClassPrefix_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.objc_class_prefix"
  502. FileOptions_CsharpNamespace_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.csharp_namespace"
  503. FileOptions_SwiftPrefix_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.swift_prefix"
  504. FileOptions_PhpClassPrefix_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.php_class_prefix"
  505. FileOptions_PhpNamespace_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.php_namespace"
  506. FileOptions_PhpMetadataNamespace_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.php_metadata_namespace"
  507. FileOptions_RubyPackage_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.ruby_package"
  508. FileOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.features"
  509. FileOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.FileOptions.uninterpreted_option"
  510. )
  511. // Field numbers for google.protobuf.FileOptions.
  512. const (
  513. FileOptions_JavaPackage_field_number protoreflect.FieldNumber = 1
  514. FileOptions_JavaOuterClassname_field_number protoreflect.FieldNumber = 8
  515. FileOptions_JavaMultipleFiles_field_number protoreflect.FieldNumber = 10
  516. FileOptions_JavaGenerateEqualsAndHash_field_number protoreflect.FieldNumber = 20
  517. FileOptions_JavaStringCheckUtf8_field_number protoreflect.FieldNumber = 27
  518. FileOptions_OptimizeFor_field_number protoreflect.FieldNumber = 9
  519. FileOptions_GoPackage_field_number protoreflect.FieldNumber = 11
  520. FileOptions_CcGenericServices_field_number protoreflect.FieldNumber = 16
  521. FileOptions_JavaGenericServices_field_number protoreflect.FieldNumber = 17
  522. FileOptions_PyGenericServices_field_number protoreflect.FieldNumber = 18
  523. FileOptions_Deprecated_field_number protoreflect.FieldNumber = 23
  524. FileOptions_CcEnableArenas_field_number protoreflect.FieldNumber = 31
  525. FileOptions_ObjcClassPrefix_field_number protoreflect.FieldNumber = 36
  526. FileOptions_CsharpNamespace_field_number protoreflect.FieldNumber = 37
  527. FileOptions_SwiftPrefix_field_number protoreflect.FieldNumber = 39
  528. FileOptions_PhpClassPrefix_field_number protoreflect.FieldNumber = 40
  529. FileOptions_PhpNamespace_field_number protoreflect.FieldNumber = 41
  530. FileOptions_PhpMetadataNamespace_field_number protoreflect.FieldNumber = 44
  531. FileOptions_RubyPackage_field_number protoreflect.FieldNumber = 45
  532. FileOptions_Features_field_number protoreflect.FieldNumber = 50
  533. FileOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  534. )
  535. // Full and short names for google.protobuf.FileOptions.OptimizeMode.
  536. const (
  537. FileOptions_OptimizeMode_enum_fullname = "google.protobuf.FileOptions.OptimizeMode"
  538. FileOptions_OptimizeMode_enum_name = "OptimizeMode"
  539. )
  540. // Enum values for google.protobuf.FileOptions.OptimizeMode.
  541. const (
  542. FileOptions_SPEED_enum_value = 1
  543. FileOptions_CODE_SIZE_enum_value = 2
  544. FileOptions_LITE_RUNTIME_enum_value = 3
  545. )
  546. // Names for google.protobuf.MessageOptions.
  547. const (
  548. MessageOptions_message_name protoreflect.Name = "MessageOptions"
  549. MessageOptions_message_fullname protoreflect.FullName = "google.protobuf.MessageOptions"
  550. )
  551. // Field names for google.protobuf.MessageOptions.
  552. const (
  553. MessageOptions_MessageSetWireFormat_field_name protoreflect.Name = "message_set_wire_format"
  554. MessageOptions_NoStandardDescriptorAccessor_field_name protoreflect.Name = "no_standard_descriptor_accessor"
  555. MessageOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  556. MessageOptions_MapEntry_field_name protoreflect.Name = "map_entry"
  557. MessageOptions_DeprecatedLegacyJsonFieldConflicts_field_name protoreflect.Name = "deprecated_legacy_json_field_conflicts"
  558. MessageOptions_Features_field_name protoreflect.Name = "features"
  559. MessageOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  560. MessageOptions_MessageSetWireFormat_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.message_set_wire_format"
  561. MessageOptions_NoStandardDescriptorAccessor_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.no_standard_descriptor_accessor"
  562. MessageOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.deprecated"
  563. MessageOptions_MapEntry_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.map_entry"
  564. MessageOptions_DeprecatedLegacyJsonFieldConflicts_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.deprecated_legacy_json_field_conflicts"
  565. MessageOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.features"
  566. MessageOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.MessageOptions.uninterpreted_option"
  567. )
  568. // Field numbers for google.protobuf.MessageOptions.
  569. const (
  570. MessageOptions_MessageSetWireFormat_field_number protoreflect.FieldNumber = 1
  571. MessageOptions_NoStandardDescriptorAccessor_field_number protoreflect.FieldNumber = 2
  572. MessageOptions_Deprecated_field_number protoreflect.FieldNumber = 3
  573. MessageOptions_MapEntry_field_number protoreflect.FieldNumber = 7
  574. MessageOptions_DeprecatedLegacyJsonFieldConflicts_field_number protoreflect.FieldNumber = 11
  575. MessageOptions_Features_field_number protoreflect.FieldNumber = 12
  576. MessageOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  577. )
  578. // Names for google.protobuf.FieldOptions.
  579. const (
  580. FieldOptions_message_name protoreflect.Name = "FieldOptions"
  581. FieldOptions_message_fullname protoreflect.FullName = "google.protobuf.FieldOptions"
  582. )
  583. // Field names for google.protobuf.FieldOptions.
  584. const (
  585. FieldOptions_Ctype_field_name protoreflect.Name = "ctype"
  586. FieldOptions_Packed_field_name protoreflect.Name = "packed"
  587. FieldOptions_Jstype_field_name protoreflect.Name = "jstype"
  588. FieldOptions_Lazy_field_name protoreflect.Name = "lazy"
  589. FieldOptions_UnverifiedLazy_field_name protoreflect.Name = "unverified_lazy"
  590. FieldOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  591. FieldOptions_Weak_field_name protoreflect.Name = "weak"
  592. FieldOptions_DebugRedact_field_name protoreflect.Name = "debug_redact"
  593. FieldOptions_Retention_field_name protoreflect.Name = "retention"
  594. FieldOptions_Targets_field_name protoreflect.Name = "targets"
  595. FieldOptions_EditionDefaults_field_name protoreflect.Name = "edition_defaults"
  596. FieldOptions_Features_field_name protoreflect.Name = "features"
  597. FieldOptions_FeatureSupport_field_name protoreflect.Name = "feature_support"
  598. FieldOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  599. FieldOptions_Ctype_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.ctype"
  600. FieldOptions_Packed_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.packed"
  601. FieldOptions_Jstype_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.jstype"
  602. FieldOptions_Lazy_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.lazy"
  603. FieldOptions_UnverifiedLazy_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.unverified_lazy"
  604. FieldOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.deprecated"
  605. FieldOptions_Weak_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.weak"
  606. FieldOptions_DebugRedact_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.debug_redact"
  607. FieldOptions_Retention_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.retention"
  608. FieldOptions_Targets_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.targets"
  609. FieldOptions_EditionDefaults_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.edition_defaults"
  610. FieldOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.features"
  611. FieldOptions_FeatureSupport_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.feature_support"
  612. FieldOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.uninterpreted_option"
  613. )
  614. // Field numbers for google.protobuf.FieldOptions.
  615. const (
  616. FieldOptions_Ctype_field_number protoreflect.FieldNumber = 1
  617. FieldOptions_Packed_field_number protoreflect.FieldNumber = 2
  618. FieldOptions_Jstype_field_number protoreflect.FieldNumber = 6
  619. FieldOptions_Lazy_field_number protoreflect.FieldNumber = 5
  620. FieldOptions_UnverifiedLazy_field_number protoreflect.FieldNumber = 15
  621. FieldOptions_Deprecated_field_number protoreflect.FieldNumber = 3
  622. FieldOptions_Weak_field_number protoreflect.FieldNumber = 10
  623. FieldOptions_DebugRedact_field_number protoreflect.FieldNumber = 16
  624. FieldOptions_Retention_field_number protoreflect.FieldNumber = 17
  625. FieldOptions_Targets_field_number protoreflect.FieldNumber = 19
  626. FieldOptions_EditionDefaults_field_number protoreflect.FieldNumber = 20
  627. FieldOptions_Features_field_number protoreflect.FieldNumber = 21
  628. FieldOptions_FeatureSupport_field_number protoreflect.FieldNumber = 22
  629. FieldOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  630. )
  631. // Full and short names for google.protobuf.FieldOptions.CType.
  632. const (
  633. FieldOptions_CType_enum_fullname = "google.protobuf.FieldOptions.CType"
  634. FieldOptions_CType_enum_name = "CType"
  635. )
  636. // Enum values for google.protobuf.FieldOptions.CType.
  637. const (
  638. FieldOptions_STRING_enum_value = 0
  639. FieldOptions_CORD_enum_value = 1
  640. FieldOptions_STRING_PIECE_enum_value = 2
  641. )
  642. // Full and short names for google.protobuf.FieldOptions.JSType.
  643. const (
  644. FieldOptions_JSType_enum_fullname = "google.protobuf.FieldOptions.JSType"
  645. FieldOptions_JSType_enum_name = "JSType"
  646. )
  647. // Enum values for google.protobuf.FieldOptions.JSType.
  648. const (
  649. FieldOptions_JS_NORMAL_enum_value = 0
  650. FieldOptions_JS_STRING_enum_value = 1
  651. FieldOptions_JS_NUMBER_enum_value = 2
  652. )
  653. // Full and short names for google.protobuf.FieldOptions.OptionRetention.
  654. const (
  655. FieldOptions_OptionRetention_enum_fullname = "google.protobuf.FieldOptions.OptionRetention"
  656. FieldOptions_OptionRetention_enum_name = "OptionRetention"
  657. )
  658. // Enum values for google.protobuf.FieldOptions.OptionRetention.
  659. const (
  660. FieldOptions_RETENTION_UNKNOWN_enum_value = 0
  661. FieldOptions_RETENTION_RUNTIME_enum_value = 1
  662. FieldOptions_RETENTION_SOURCE_enum_value = 2
  663. )
  664. // Full and short names for google.protobuf.FieldOptions.OptionTargetType.
  665. const (
  666. FieldOptions_OptionTargetType_enum_fullname = "google.protobuf.FieldOptions.OptionTargetType"
  667. FieldOptions_OptionTargetType_enum_name = "OptionTargetType"
  668. )
  669. // Enum values for google.protobuf.FieldOptions.OptionTargetType.
  670. const (
  671. FieldOptions_TARGET_TYPE_UNKNOWN_enum_value = 0
  672. FieldOptions_TARGET_TYPE_FILE_enum_value = 1
  673. FieldOptions_TARGET_TYPE_EXTENSION_RANGE_enum_value = 2
  674. FieldOptions_TARGET_TYPE_MESSAGE_enum_value = 3
  675. FieldOptions_TARGET_TYPE_FIELD_enum_value = 4
  676. FieldOptions_TARGET_TYPE_ONEOF_enum_value = 5
  677. FieldOptions_TARGET_TYPE_ENUM_enum_value = 6
  678. FieldOptions_TARGET_TYPE_ENUM_ENTRY_enum_value = 7
  679. FieldOptions_TARGET_TYPE_SERVICE_enum_value = 8
  680. FieldOptions_TARGET_TYPE_METHOD_enum_value = 9
  681. )
  682. // Names for google.protobuf.FieldOptions.EditionDefault.
  683. const (
  684. FieldOptions_EditionDefault_message_name protoreflect.Name = "EditionDefault"
  685. FieldOptions_EditionDefault_message_fullname protoreflect.FullName = "google.protobuf.FieldOptions.EditionDefault"
  686. )
  687. // Field names for google.protobuf.FieldOptions.EditionDefault.
  688. const (
  689. FieldOptions_EditionDefault_Edition_field_name protoreflect.Name = "edition"
  690. FieldOptions_EditionDefault_Value_field_name protoreflect.Name = "value"
  691. FieldOptions_EditionDefault_Edition_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.EditionDefault.edition"
  692. FieldOptions_EditionDefault_Value_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.EditionDefault.value"
  693. )
  694. // Field numbers for google.protobuf.FieldOptions.EditionDefault.
  695. const (
  696. FieldOptions_EditionDefault_Edition_field_number protoreflect.FieldNumber = 3
  697. FieldOptions_EditionDefault_Value_field_number protoreflect.FieldNumber = 2
  698. )
  699. // Names for google.protobuf.FieldOptions.FeatureSupport.
  700. const (
  701. FieldOptions_FeatureSupport_message_name protoreflect.Name = "FeatureSupport"
  702. FieldOptions_FeatureSupport_message_fullname protoreflect.FullName = "google.protobuf.FieldOptions.FeatureSupport"
  703. )
  704. // Field names for google.protobuf.FieldOptions.FeatureSupport.
  705. const (
  706. FieldOptions_FeatureSupport_EditionIntroduced_field_name protoreflect.Name = "edition_introduced"
  707. FieldOptions_FeatureSupport_EditionDeprecated_field_name protoreflect.Name = "edition_deprecated"
  708. FieldOptions_FeatureSupport_DeprecationWarning_field_name protoreflect.Name = "deprecation_warning"
  709. FieldOptions_FeatureSupport_EditionRemoved_field_name protoreflect.Name = "edition_removed"
  710. FieldOptions_FeatureSupport_EditionIntroduced_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.FeatureSupport.edition_introduced"
  711. FieldOptions_FeatureSupport_EditionDeprecated_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.FeatureSupport.edition_deprecated"
  712. FieldOptions_FeatureSupport_DeprecationWarning_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.FeatureSupport.deprecation_warning"
  713. FieldOptions_FeatureSupport_EditionRemoved_field_fullname protoreflect.FullName = "google.protobuf.FieldOptions.FeatureSupport.edition_removed"
  714. )
  715. // Field numbers for google.protobuf.FieldOptions.FeatureSupport.
  716. const (
  717. FieldOptions_FeatureSupport_EditionIntroduced_field_number protoreflect.FieldNumber = 1
  718. FieldOptions_FeatureSupport_EditionDeprecated_field_number protoreflect.FieldNumber = 2
  719. FieldOptions_FeatureSupport_DeprecationWarning_field_number protoreflect.FieldNumber = 3
  720. FieldOptions_FeatureSupport_EditionRemoved_field_number protoreflect.FieldNumber = 4
  721. )
  722. // Names for google.protobuf.OneofOptions.
  723. const (
  724. OneofOptions_message_name protoreflect.Name = "OneofOptions"
  725. OneofOptions_message_fullname protoreflect.FullName = "google.protobuf.OneofOptions"
  726. )
  727. // Field names for google.protobuf.OneofOptions.
  728. const (
  729. OneofOptions_Features_field_name protoreflect.Name = "features"
  730. OneofOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  731. OneofOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.OneofOptions.features"
  732. OneofOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.OneofOptions.uninterpreted_option"
  733. )
  734. // Field numbers for google.protobuf.OneofOptions.
  735. const (
  736. OneofOptions_Features_field_number protoreflect.FieldNumber = 1
  737. OneofOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  738. )
  739. // Names for google.protobuf.EnumOptions.
  740. const (
  741. EnumOptions_message_name protoreflect.Name = "EnumOptions"
  742. EnumOptions_message_fullname protoreflect.FullName = "google.protobuf.EnumOptions"
  743. )
  744. // Field names for google.protobuf.EnumOptions.
  745. const (
  746. EnumOptions_AllowAlias_field_name protoreflect.Name = "allow_alias"
  747. EnumOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  748. EnumOptions_DeprecatedLegacyJsonFieldConflicts_field_name protoreflect.Name = "deprecated_legacy_json_field_conflicts"
  749. EnumOptions_Features_field_name protoreflect.Name = "features"
  750. EnumOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  751. EnumOptions_AllowAlias_field_fullname protoreflect.FullName = "google.protobuf.EnumOptions.allow_alias"
  752. EnumOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.EnumOptions.deprecated"
  753. EnumOptions_DeprecatedLegacyJsonFieldConflicts_field_fullname protoreflect.FullName = "google.protobuf.EnumOptions.deprecated_legacy_json_field_conflicts"
  754. EnumOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.EnumOptions.features"
  755. EnumOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.EnumOptions.uninterpreted_option"
  756. )
  757. // Field numbers for google.protobuf.EnumOptions.
  758. const (
  759. EnumOptions_AllowAlias_field_number protoreflect.FieldNumber = 2
  760. EnumOptions_Deprecated_field_number protoreflect.FieldNumber = 3
  761. EnumOptions_DeprecatedLegacyJsonFieldConflicts_field_number protoreflect.FieldNumber = 6
  762. EnumOptions_Features_field_number protoreflect.FieldNumber = 7
  763. EnumOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  764. )
  765. // Names for google.protobuf.EnumValueOptions.
  766. const (
  767. EnumValueOptions_message_name protoreflect.Name = "EnumValueOptions"
  768. EnumValueOptions_message_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions"
  769. )
  770. // Field names for google.protobuf.EnumValueOptions.
  771. const (
  772. EnumValueOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  773. EnumValueOptions_Features_field_name protoreflect.Name = "features"
  774. EnumValueOptions_DebugRedact_field_name protoreflect.Name = "debug_redact"
  775. EnumValueOptions_FeatureSupport_field_name protoreflect.Name = "feature_support"
  776. EnumValueOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  777. EnumValueOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions.deprecated"
  778. EnumValueOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions.features"
  779. EnumValueOptions_DebugRedact_field_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions.debug_redact"
  780. EnumValueOptions_FeatureSupport_field_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions.feature_support"
  781. EnumValueOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.EnumValueOptions.uninterpreted_option"
  782. )
  783. // Field numbers for google.protobuf.EnumValueOptions.
  784. const (
  785. EnumValueOptions_Deprecated_field_number protoreflect.FieldNumber = 1
  786. EnumValueOptions_Features_field_number protoreflect.FieldNumber = 2
  787. EnumValueOptions_DebugRedact_field_number protoreflect.FieldNumber = 3
  788. EnumValueOptions_FeatureSupport_field_number protoreflect.FieldNumber = 4
  789. EnumValueOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  790. )
  791. // Names for google.protobuf.ServiceOptions.
  792. const (
  793. ServiceOptions_message_name protoreflect.Name = "ServiceOptions"
  794. ServiceOptions_message_fullname protoreflect.FullName = "google.protobuf.ServiceOptions"
  795. )
  796. // Field names for google.protobuf.ServiceOptions.
  797. const (
  798. ServiceOptions_Features_field_name protoreflect.Name = "features"
  799. ServiceOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  800. ServiceOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  801. ServiceOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.ServiceOptions.features"
  802. ServiceOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.ServiceOptions.deprecated"
  803. ServiceOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.ServiceOptions.uninterpreted_option"
  804. )
  805. // Field numbers for google.protobuf.ServiceOptions.
  806. const (
  807. ServiceOptions_Features_field_number protoreflect.FieldNumber = 34
  808. ServiceOptions_Deprecated_field_number protoreflect.FieldNumber = 33
  809. ServiceOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  810. )
  811. // Names for google.protobuf.MethodOptions.
  812. const (
  813. MethodOptions_message_name protoreflect.Name = "MethodOptions"
  814. MethodOptions_message_fullname protoreflect.FullName = "google.protobuf.MethodOptions"
  815. )
  816. // Field names for google.protobuf.MethodOptions.
  817. const (
  818. MethodOptions_Deprecated_field_name protoreflect.Name = "deprecated"
  819. MethodOptions_IdempotencyLevel_field_name protoreflect.Name = "idempotency_level"
  820. MethodOptions_Features_field_name protoreflect.Name = "features"
  821. MethodOptions_UninterpretedOption_field_name protoreflect.Name = "uninterpreted_option"
  822. MethodOptions_Deprecated_field_fullname protoreflect.FullName = "google.protobuf.MethodOptions.deprecated"
  823. MethodOptions_IdempotencyLevel_field_fullname protoreflect.FullName = "google.protobuf.MethodOptions.idempotency_level"
  824. MethodOptions_Features_field_fullname protoreflect.FullName = "google.protobuf.MethodOptions.features"
  825. MethodOptions_UninterpretedOption_field_fullname protoreflect.FullName = "google.protobuf.MethodOptions.uninterpreted_option"
  826. )
  827. // Field numbers for google.protobuf.MethodOptions.
  828. const (
  829. MethodOptions_Deprecated_field_number protoreflect.FieldNumber = 33
  830. MethodOptions_IdempotencyLevel_field_number protoreflect.FieldNumber = 34
  831. MethodOptions_Features_field_number protoreflect.FieldNumber = 35
  832. MethodOptions_UninterpretedOption_field_number protoreflect.FieldNumber = 999
  833. )
  834. // Full and short names for google.protobuf.MethodOptions.IdempotencyLevel.
  835. const (
  836. MethodOptions_IdempotencyLevel_enum_fullname = "google.protobuf.MethodOptions.IdempotencyLevel"
  837. MethodOptions_IdempotencyLevel_enum_name = "IdempotencyLevel"
  838. )
  839. // Enum values for google.protobuf.MethodOptions.IdempotencyLevel.
  840. const (
  841. MethodOptions_IDEMPOTENCY_UNKNOWN_enum_value = 0
  842. MethodOptions_NO_SIDE_EFFECTS_enum_value = 1
  843. MethodOptions_IDEMPOTENT_enum_value = 2
  844. )
  845. // Names for google.protobuf.UninterpretedOption.
  846. const (
  847. UninterpretedOption_message_name protoreflect.Name = "UninterpretedOption"
  848. UninterpretedOption_message_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption"
  849. )
  850. // Field names for google.protobuf.UninterpretedOption.
  851. const (
  852. UninterpretedOption_Name_field_name protoreflect.Name = "name"
  853. UninterpretedOption_IdentifierValue_field_name protoreflect.Name = "identifier_value"
  854. UninterpretedOption_PositiveIntValue_field_name protoreflect.Name = "positive_int_value"
  855. UninterpretedOption_NegativeIntValue_field_name protoreflect.Name = "negative_int_value"
  856. UninterpretedOption_DoubleValue_field_name protoreflect.Name = "double_value"
  857. UninterpretedOption_StringValue_field_name protoreflect.Name = "string_value"
  858. UninterpretedOption_AggregateValue_field_name protoreflect.Name = "aggregate_value"
  859. UninterpretedOption_Name_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.name"
  860. UninterpretedOption_IdentifierValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.identifier_value"
  861. UninterpretedOption_PositiveIntValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.positive_int_value"
  862. UninterpretedOption_NegativeIntValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.negative_int_value"
  863. UninterpretedOption_DoubleValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.double_value"
  864. UninterpretedOption_StringValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.string_value"
  865. UninterpretedOption_AggregateValue_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.aggregate_value"
  866. )
  867. // Field numbers for google.protobuf.UninterpretedOption.
  868. const (
  869. UninterpretedOption_Name_field_number protoreflect.FieldNumber = 2
  870. UninterpretedOption_IdentifierValue_field_number protoreflect.FieldNumber = 3
  871. UninterpretedOption_PositiveIntValue_field_number protoreflect.FieldNumber = 4
  872. UninterpretedOption_NegativeIntValue_field_number protoreflect.FieldNumber = 5
  873. UninterpretedOption_DoubleValue_field_number protoreflect.FieldNumber = 6
  874. UninterpretedOption_StringValue_field_number protoreflect.FieldNumber = 7
  875. UninterpretedOption_AggregateValue_field_number protoreflect.FieldNumber = 8
  876. )
  877. // Names for google.protobuf.UninterpretedOption.NamePart.
  878. const (
  879. UninterpretedOption_NamePart_message_name protoreflect.Name = "NamePart"
  880. UninterpretedOption_NamePart_message_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.NamePart"
  881. )
  882. // Field names for google.protobuf.UninterpretedOption.NamePart.
  883. const (
  884. UninterpretedOption_NamePart_NamePart_field_name protoreflect.Name = "name_part"
  885. UninterpretedOption_NamePart_IsExtension_field_name protoreflect.Name = "is_extension"
  886. UninterpretedOption_NamePart_NamePart_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.NamePart.name_part"
  887. UninterpretedOption_NamePart_IsExtension_field_fullname protoreflect.FullName = "google.protobuf.UninterpretedOption.NamePart.is_extension"
  888. )
  889. // Field numbers for google.protobuf.UninterpretedOption.NamePart.
  890. const (
  891. UninterpretedOption_NamePart_NamePart_field_number protoreflect.FieldNumber = 1
  892. UninterpretedOption_NamePart_IsExtension_field_number protoreflect.FieldNumber = 2
  893. )
  894. // Names for google.protobuf.FeatureSet.
  895. const (
  896. FeatureSet_message_name protoreflect.Name = "FeatureSet"
  897. FeatureSet_message_fullname protoreflect.FullName = "google.protobuf.FeatureSet"
  898. )
  899. // Field names for google.protobuf.FeatureSet.
  900. const (
  901. FeatureSet_FieldPresence_field_name protoreflect.Name = "field_presence"
  902. FeatureSet_EnumType_field_name protoreflect.Name = "enum_type"
  903. FeatureSet_RepeatedFieldEncoding_field_name protoreflect.Name = "repeated_field_encoding"
  904. FeatureSet_Utf8Validation_field_name protoreflect.Name = "utf8_validation"
  905. FeatureSet_MessageEncoding_field_name protoreflect.Name = "message_encoding"
  906. FeatureSet_JsonFormat_field_name protoreflect.Name = "json_format"
  907. FeatureSet_EnforceNamingStyle_field_name protoreflect.Name = "enforce_naming_style"
  908. FeatureSet_DefaultSymbolVisibility_field_name protoreflect.Name = "default_symbol_visibility"
  909. FeatureSet_FieldPresence_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.field_presence"
  910. FeatureSet_EnumType_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.enum_type"
  911. FeatureSet_RepeatedFieldEncoding_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.repeated_field_encoding"
  912. FeatureSet_Utf8Validation_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.utf8_validation"
  913. FeatureSet_MessageEncoding_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.message_encoding"
  914. FeatureSet_JsonFormat_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.json_format"
  915. FeatureSet_EnforceNamingStyle_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.enforce_naming_style"
  916. FeatureSet_DefaultSymbolVisibility_field_fullname protoreflect.FullName = "google.protobuf.FeatureSet.default_symbol_visibility"
  917. )
  918. // Field numbers for google.protobuf.FeatureSet.
  919. const (
  920. FeatureSet_FieldPresence_field_number protoreflect.FieldNumber = 1
  921. FeatureSet_EnumType_field_number protoreflect.FieldNumber = 2
  922. FeatureSet_RepeatedFieldEncoding_field_number protoreflect.FieldNumber = 3
  923. FeatureSet_Utf8Validation_field_number protoreflect.FieldNumber = 4
  924. FeatureSet_MessageEncoding_field_number protoreflect.FieldNumber = 5
  925. FeatureSet_JsonFormat_field_number protoreflect.FieldNumber = 6
  926. FeatureSet_EnforceNamingStyle_field_number protoreflect.FieldNumber = 7
  927. FeatureSet_DefaultSymbolVisibility_field_number protoreflect.FieldNumber = 8
  928. )
  929. // Full and short names for google.protobuf.FeatureSet.FieldPresence.
  930. const (
  931. FeatureSet_FieldPresence_enum_fullname = "google.protobuf.FeatureSet.FieldPresence"
  932. FeatureSet_FieldPresence_enum_name = "FieldPresence"
  933. )
  934. // Enum values for google.protobuf.FeatureSet.FieldPresence.
  935. const (
  936. FeatureSet_FIELD_PRESENCE_UNKNOWN_enum_value = 0
  937. FeatureSet_EXPLICIT_enum_value = 1
  938. FeatureSet_IMPLICIT_enum_value = 2
  939. FeatureSet_LEGACY_REQUIRED_enum_value = 3
  940. )
  941. // Full and short names for google.protobuf.FeatureSet.EnumType.
  942. const (
  943. FeatureSet_EnumType_enum_fullname = "google.protobuf.FeatureSet.EnumType"
  944. FeatureSet_EnumType_enum_name = "EnumType"
  945. )
  946. // Enum values for google.protobuf.FeatureSet.EnumType.
  947. const (
  948. FeatureSet_ENUM_TYPE_UNKNOWN_enum_value = 0
  949. FeatureSet_OPEN_enum_value = 1
  950. FeatureSet_CLOSED_enum_value = 2
  951. )
  952. // Full and short names for google.protobuf.FeatureSet.RepeatedFieldEncoding.
  953. const (
  954. FeatureSet_RepeatedFieldEncoding_enum_fullname = "google.protobuf.FeatureSet.RepeatedFieldEncoding"
  955. FeatureSet_RepeatedFieldEncoding_enum_name = "RepeatedFieldEncoding"
  956. )
  957. // Enum values for google.protobuf.FeatureSet.RepeatedFieldEncoding.
  958. const (
  959. FeatureSet_REPEATED_FIELD_ENCODING_UNKNOWN_enum_value = 0
  960. FeatureSet_PACKED_enum_value = 1
  961. FeatureSet_EXPANDED_enum_value = 2
  962. )
  963. // Full and short names for google.protobuf.FeatureSet.Utf8Validation.
  964. const (
  965. FeatureSet_Utf8Validation_enum_fullname = "google.protobuf.FeatureSet.Utf8Validation"
  966. FeatureSet_Utf8Validation_enum_name = "Utf8Validation"
  967. )
  968. // Enum values for google.protobuf.FeatureSet.Utf8Validation.
  969. const (
  970. FeatureSet_UTF8_VALIDATION_UNKNOWN_enum_value = 0
  971. FeatureSet_VERIFY_enum_value = 2
  972. FeatureSet_NONE_enum_value = 3
  973. )
  974. // Full and short names for google.protobuf.FeatureSet.MessageEncoding.
  975. const (
  976. FeatureSet_MessageEncoding_enum_fullname = "google.protobuf.FeatureSet.MessageEncoding"
  977. FeatureSet_MessageEncoding_enum_name = "MessageEncoding"
  978. )
  979. // Enum values for google.protobuf.FeatureSet.MessageEncoding.
  980. const (
  981. FeatureSet_MESSAGE_ENCODING_UNKNOWN_enum_value = 0
  982. FeatureSet_LENGTH_PREFIXED_enum_value = 1
  983. FeatureSet_DELIMITED_enum_value = 2
  984. )
  985. // Full and short names for google.protobuf.FeatureSet.JsonFormat.
  986. const (
  987. FeatureSet_JsonFormat_enum_fullname = "google.protobuf.FeatureSet.JsonFormat"
  988. FeatureSet_JsonFormat_enum_name = "JsonFormat"
  989. )
  990. // Enum values for google.protobuf.FeatureSet.JsonFormat.
  991. const (
  992. FeatureSet_JSON_FORMAT_UNKNOWN_enum_value = 0
  993. FeatureSet_ALLOW_enum_value = 1
  994. FeatureSet_LEGACY_BEST_EFFORT_enum_value = 2
  995. )
  996. // Full and short names for google.protobuf.FeatureSet.EnforceNamingStyle.
  997. const (
  998. FeatureSet_EnforceNamingStyle_enum_fullname = "google.protobuf.FeatureSet.EnforceNamingStyle"
  999. FeatureSet_EnforceNamingStyle_enum_name = "EnforceNamingStyle"
  1000. )
  1001. // Enum values for google.protobuf.FeatureSet.EnforceNamingStyle.
  1002. const (
  1003. FeatureSet_ENFORCE_NAMING_STYLE_UNKNOWN_enum_value = 0
  1004. FeatureSet_STYLE2024_enum_value = 1
  1005. FeatureSet_STYLE_LEGACY_enum_value = 2
  1006. )
  1007. // Names for google.protobuf.FeatureSet.VisibilityFeature.
  1008. const (
  1009. FeatureSet_VisibilityFeature_message_name protoreflect.Name = "VisibilityFeature"
  1010. FeatureSet_VisibilityFeature_message_fullname protoreflect.FullName = "google.protobuf.FeatureSet.VisibilityFeature"
  1011. )
  1012. // Full and short names for google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility.
  1013. const (
  1014. FeatureSet_VisibilityFeature_DefaultSymbolVisibility_enum_fullname = "google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility"
  1015. FeatureSet_VisibilityFeature_DefaultSymbolVisibility_enum_name = "DefaultSymbolVisibility"
  1016. )
  1017. // Enum values for google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility.
  1018. const (
  1019. FeatureSet_VisibilityFeature_DEFAULT_SYMBOL_VISIBILITY_UNKNOWN_enum_value = 0
  1020. FeatureSet_VisibilityFeature_EXPORT_ALL_enum_value = 1
  1021. FeatureSet_VisibilityFeature_EXPORT_TOP_LEVEL_enum_value = 2
  1022. FeatureSet_VisibilityFeature_LOCAL_ALL_enum_value = 3
  1023. FeatureSet_VisibilityFeature_STRICT_enum_value = 4
  1024. )
  1025. // Names for google.protobuf.FeatureSetDefaults.
  1026. const (
  1027. FeatureSetDefaults_message_name protoreflect.Name = "FeatureSetDefaults"
  1028. FeatureSetDefaults_message_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults"
  1029. )
  1030. // Field names for google.protobuf.FeatureSetDefaults.
  1031. const (
  1032. FeatureSetDefaults_Defaults_field_name protoreflect.Name = "defaults"
  1033. FeatureSetDefaults_MinimumEdition_field_name protoreflect.Name = "minimum_edition"
  1034. FeatureSetDefaults_MaximumEdition_field_name protoreflect.Name = "maximum_edition"
  1035. FeatureSetDefaults_Defaults_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.defaults"
  1036. FeatureSetDefaults_MinimumEdition_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.minimum_edition"
  1037. FeatureSetDefaults_MaximumEdition_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.maximum_edition"
  1038. )
  1039. // Field numbers for google.protobuf.FeatureSetDefaults.
  1040. const (
  1041. FeatureSetDefaults_Defaults_field_number protoreflect.FieldNumber = 1
  1042. FeatureSetDefaults_MinimumEdition_field_number protoreflect.FieldNumber = 4
  1043. FeatureSetDefaults_MaximumEdition_field_number protoreflect.FieldNumber = 5
  1044. )
  1045. // Names for google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.
  1046. const (
  1047. FeatureSetDefaults_FeatureSetEditionDefault_message_name protoreflect.Name = "FeatureSetEditionDefault"
  1048. FeatureSetDefaults_FeatureSetEditionDefault_message_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault"
  1049. )
  1050. // Field names for google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.
  1051. const (
  1052. FeatureSetDefaults_FeatureSetEditionDefault_Edition_field_name protoreflect.Name = "edition"
  1053. FeatureSetDefaults_FeatureSetEditionDefault_OverridableFeatures_field_name protoreflect.Name = "overridable_features"
  1054. FeatureSetDefaults_FeatureSetEditionDefault_FixedFeatures_field_name protoreflect.Name = "fixed_features"
  1055. FeatureSetDefaults_FeatureSetEditionDefault_Edition_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.edition"
  1056. FeatureSetDefaults_FeatureSetEditionDefault_OverridableFeatures_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.overridable_features"
  1057. FeatureSetDefaults_FeatureSetEditionDefault_FixedFeatures_field_fullname protoreflect.FullName = "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.fixed_features"
  1058. )
  1059. // Field numbers for google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.
  1060. const (
  1061. FeatureSetDefaults_FeatureSetEditionDefault_Edition_field_number protoreflect.FieldNumber = 3
  1062. FeatureSetDefaults_FeatureSetEditionDefault_OverridableFeatures_field_number protoreflect.FieldNumber = 4
  1063. FeatureSetDefaults_FeatureSetEditionDefault_FixedFeatures_field_number protoreflect.FieldNumber = 5
  1064. )
  1065. // Names for google.protobuf.SourceCodeInfo.
  1066. const (
  1067. SourceCodeInfo_message_name protoreflect.Name = "SourceCodeInfo"
  1068. SourceCodeInfo_message_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo"
  1069. )
  1070. // Field names for google.protobuf.SourceCodeInfo.
  1071. const (
  1072. SourceCodeInfo_Location_field_name protoreflect.Name = "location"
  1073. SourceCodeInfo_Location_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.location"
  1074. )
  1075. // Field numbers for google.protobuf.SourceCodeInfo.
  1076. const (
  1077. SourceCodeInfo_Location_field_number protoreflect.FieldNumber = 1
  1078. )
  1079. // Names for google.protobuf.SourceCodeInfo.Location.
  1080. const (
  1081. SourceCodeInfo_Location_message_name protoreflect.Name = "Location"
  1082. SourceCodeInfo_Location_message_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location"
  1083. )
  1084. // Field names for google.protobuf.SourceCodeInfo.Location.
  1085. const (
  1086. SourceCodeInfo_Location_Path_field_name protoreflect.Name = "path"
  1087. SourceCodeInfo_Location_Span_field_name protoreflect.Name = "span"
  1088. SourceCodeInfo_Location_LeadingComments_field_name protoreflect.Name = "leading_comments"
  1089. SourceCodeInfo_Location_TrailingComments_field_name protoreflect.Name = "trailing_comments"
  1090. SourceCodeInfo_Location_LeadingDetachedComments_field_name protoreflect.Name = "leading_detached_comments"
  1091. SourceCodeInfo_Location_Path_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location.path"
  1092. SourceCodeInfo_Location_Span_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location.span"
  1093. SourceCodeInfo_Location_LeadingComments_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location.leading_comments"
  1094. SourceCodeInfo_Location_TrailingComments_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location.trailing_comments"
  1095. SourceCodeInfo_Location_LeadingDetachedComments_field_fullname protoreflect.FullName = "google.protobuf.SourceCodeInfo.Location.leading_detached_comments"
  1096. )
  1097. // Field numbers for google.protobuf.SourceCodeInfo.Location.
  1098. const (
  1099. SourceCodeInfo_Location_Path_field_number protoreflect.FieldNumber = 1
  1100. SourceCodeInfo_Location_Span_field_number protoreflect.FieldNumber = 2
  1101. SourceCodeInfo_Location_LeadingComments_field_number protoreflect.FieldNumber = 3
  1102. SourceCodeInfo_Location_TrailingComments_field_number protoreflect.FieldNumber = 4
  1103. SourceCodeInfo_Location_LeadingDetachedComments_field_number protoreflect.FieldNumber = 6
  1104. )
  1105. // Names for google.protobuf.GeneratedCodeInfo.
  1106. const (
  1107. GeneratedCodeInfo_message_name protoreflect.Name = "GeneratedCodeInfo"
  1108. GeneratedCodeInfo_message_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo"
  1109. )
  1110. // Field names for google.protobuf.GeneratedCodeInfo.
  1111. const (
  1112. GeneratedCodeInfo_Annotation_field_name protoreflect.Name = "annotation"
  1113. GeneratedCodeInfo_Annotation_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.annotation"
  1114. )
  1115. // Field numbers for google.protobuf.GeneratedCodeInfo.
  1116. const (
  1117. GeneratedCodeInfo_Annotation_field_number protoreflect.FieldNumber = 1
  1118. )
  1119. // Names for google.protobuf.GeneratedCodeInfo.Annotation.
  1120. const (
  1121. GeneratedCodeInfo_Annotation_message_name protoreflect.Name = "Annotation"
  1122. GeneratedCodeInfo_Annotation_message_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation"
  1123. )
  1124. // Field names for google.protobuf.GeneratedCodeInfo.Annotation.
  1125. const (
  1126. GeneratedCodeInfo_Annotation_Path_field_name protoreflect.Name = "path"
  1127. GeneratedCodeInfo_Annotation_SourceFile_field_name protoreflect.Name = "source_file"
  1128. GeneratedCodeInfo_Annotation_Begin_field_name protoreflect.Name = "begin"
  1129. GeneratedCodeInfo_Annotation_End_field_name protoreflect.Name = "end"
  1130. GeneratedCodeInfo_Annotation_Semantic_field_name protoreflect.Name = "semantic"
  1131. GeneratedCodeInfo_Annotation_Path_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation.path"
  1132. GeneratedCodeInfo_Annotation_SourceFile_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation.source_file"
  1133. GeneratedCodeInfo_Annotation_Begin_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation.begin"
  1134. GeneratedCodeInfo_Annotation_End_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation.end"
  1135. GeneratedCodeInfo_Annotation_Semantic_field_fullname protoreflect.FullName = "google.protobuf.GeneratedCodeInfo.Annotation.semantic"
  1136. )
  1137. // Field numbers for google.protobuf.GeneratedCodeInfo.Annotation.
  1138. const (
  1139. GeneratedCodeInfo_Annotation_Path_field_number protoreflect.FieldNumber = 1
  1140. GeneratedCodeInfo_Annotation_SourceFile_field_number protoreflect.FieldNumber = 2
  1141. GeneratedCodeInfo_Annotation_Begin_field_number protoreflect.FieldNumber = 3
  1142. GeneratedCodeInfo_Annotation_End_field_number protoreflect.FieldNumber = 4
  1143. GeneratedCodeInfo_Annotation_Semantic_field_number protoreflect.FieldNumber = 5
  1144. )
  1145. // Full and short names for google.protobuf.GeneratedCodeInfo.Annotation.Semantic.
  1146. const (
  1147. GeneratedCodeInfo_Annotation_Semantic_enum_fullname = "google.protobuf.GeneratedCodeInfo.Annotation.Semantic"
  1148. GeneratedCodeInfo_Annotation_Semantic_enum_name = "Semantic"
  1149. )
  1150. // Enum values for google.protobuf.GeneratedCodeInfo.Annotation.Semantic.
  1151. const (
  1152. GeneratedCodeInfo_Annotation_NONE_enum_value = 0
  1153. GeneratedCodeInfo_Annotation_SET_enum_value = 1
  1154. GeneratedCodeInfo_Annotation_ALIAS_enum_value = 2
  1155. )