test.pb.go 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: pb2/test.proto
  3. package pb2
  4. import (
  5. protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
  6. protoregistry "github.com/golang/protobuf/v2/reflect/protoregistry"
  7. protoiface "github.com/golang/protobuf/v2/runtime/protoiface"
  8. protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
  9. known "github.com/golang/protobuf/v2/types/known"
  10. sync "sync"
  11. )
  12. const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
  13. type Enum int32
  14. const (
  15. Enum_ONE Enum = 1
  16. Enum_TWO Enum = 2
  17. Enum_TEN Enum = 10
  18. )
  19. // Deprecated: Use Enum.Type.Values instead.
  20. var Enum_name = map[int32]string{
  21. 1: "ONE",
  22. 2: "TWO",
  23. 10: "TEN",
  24. }
  25. // Deprecated: Use Enum.Type.Values instead.
  26. var Enum_value = map[string]int32{
  27. "ONE": 1,
  28. "TWO": 2,
  29. "TEN": 10,
  30. }
  31. func (x Enum) Enum() *Enum {
  32. return &x
  33. }
  34. func (x Enum) String() string {
  35. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  36. }
  37. func (Enum) Type() protoreflect.EnumType {
  38. return xxx_File_pb2_test_proto_enumTypes[0]
  39. }
  40. func (x Enum) Number() protoreflect.EnumNumber {
  41. return protoreflect.EnumNumber(x)
  42. }
  43. // Deprecated: Do not use.
  44. func (x *Enum) UnmarshalJSON(b []byte) error {
  45. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  46. if err != nil {
  47. return err
  48. }
  49. *x = Enum(num)
  50. return nil
  51. }
  52. // Deprecated: Use Enum.Type instead.
  53. func (Enum) EnumDescriptor() ([]byte, []int) {
  54. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{0}
  55. }
  56. type Enums_NestedEnum int32
  57. const (
  58. Enums_UNO Enums_NestedEnum = 1
  59. Enums_DOS Enums_NestedEnum = 2
  60. Enums_DIEZ Enums_NestedEnum = 10
  61. )
  62. // Deprecated: Use Enums_NestedEnum.Type.Values instead.
  63. var Enums_NestedEnum_name = map[int32]string{
  64. 1: "UNO",
  65. 2: "DOS",
  66. 10: "DIEZ",
  67. }
  68. // Deprecated: Use Enums_NestedEnum.Type.Values instead.
  69. var Enums_NestedEnum_value = map[string]int32{
  70. "UNO": 1,
  71. "DOS": 2,
  72. "DIEZ": 10,
  73. }
  74. func (x Enums_NestedEnum) Enum() *Enums_NestedEnum {
  75. return &x
  76. }
  77. func (x Enums_NestedEnum) String() string {
  78. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  79. }
  80. func (Enums_NestedEnum) Type() protoreflect.EnumType {
  81. return xxx_File_pb2_test_proto_enumTypes[1]
  82. }
  83. func (x Enums_NestedEnum) Number() protoreflect.EnumNumber {
  84. return protoreflect.EnumNumber(x)
  85. }
  86. // Deprecated: Do not use.
  87. func (x *Enums_NestedEnum) UnmarshalJSON(b []byte) error {
  88. num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
  89. if err != nil {
  90. return err
  91. }
  92. *x = Enums_NestedEnum(num)
  93. return nil
  94. }
  95. // Deprecated: Use Enums_NestedEnum.Type instead.
  96. func (Enums_NestedEnum) EnumDescriptor() ([]byte, []int) {
  97. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{1, 0}
  98. }
  99. // Scalars contains optional scalar fields.
  100. type Scalars struct {
  101. OptBool *bool `protobuf:"varint,1,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  102. OptInt32 *int32 `protobuf:"varint,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  103. OptInt64 *int64 `protobuf:"varint,3,opt,name=opt_int64,json=optInt64" json:"opt_int64,omitempty"`
  104. OptUint32 *uint32 `protobuf:"varint,4,opt,name=opt_uint32,json=optUint32" json:"opt_uint32,omitempty"`
  105. OptUint64 *uint64 `protobuf:"varint,5,opt,name=opt_uint64,json=optUint64" json:"opt_uint64,omitempty"`
  106. OptSint32 *int32 `protobuf:"zigzag32,6,opt,name=opt_sint32,json=optSint32" json:"opt_sint32,omitempty"`
  107. OptSint64 *int64 `protobuf:"zigzag64,7,opt,name=opt_sint64,json=optSint64" json:"opt_sint64,omitempty"`
  108. OptFixed32 *uint32 `protobuf:"fixed32,8,opt,name=opt_fixed32,json=optFixed32" json:"opt_fixed32,omitempty"`
  109. OptFixed64 *uint64 `protobuf:"fixed64,9,opt,name=opt_fixed64,json=optFixed64" json:"opt_fixed64,omitempty"`
  110. OptSfixed32 *int32 `protobuf:"fixed32,10,opt,name=opt_sfixed32,json=optSfixed32" json:"opt_sfixed32,omitempty"`
  111. OptSfixed64 *int64 `protobuf:"fixed64,11,opt,name=opt_sfixed64,json=optSfixed64" json:"opt_sfixed64,omitempty"`
  112. OptFloat *float32 `protobuf:"fixed32,20,opt,name=opt_float,json=optFloat" json:"opt_float,omitempty"`
  113. OptDouble *float64 `protobuf:"fixed64,21,opt,name=opt_double,json=optDouble" json:"opt_double,omitempty"`
  114. OptBytes []byte `protobuf:"bytes,14,opt,name=opt_bytes,json=optBytes" json:"opt_bytes,omitempty"`
  115. OptString *string `protobuf:"bytes,13,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  116. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  117. XXX_unrecognized []byte `json:"-"`
  118. XXX_sizecache int32 `json:"-"`
  119. }
  120. func (x *Scalars) Reset() {
  121. *x = Scalars{}
  122. }
  123. func (x *Scalars) String() string {
  124. return protoimpl.X.MessageStringOf(x)
  125. }
  126. func (*Scalars) ProtoMessage() {}
  127. func (x *Scalars) ProtoReflect() protoreflect.Message {
  128. return xxx_File_pb2_test_proto_messageTypes[0].MessageOf(x)
  129. }
  130. // Deprecated: Use Scalars.ProtoReflect.Type instead.
  131. func (*Scalars) Descriptor() ([]byte, []int) {
  132. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{0}
  133. }
  134. func (x *Scalars) GetOptBool() bool {
  135. if x != nil && x.OptBool != nil {
  136. return *x.OptBool
  137. }
  138. return false
  139. }
  140. func (x *Scalars) GetOptInt32() int32 {
  141. if x != nil && x.OptInt32 != nil {
  142. return *x.OptInt32
  143. }
  144. return 0
  145. }
  146. func (x *Scalars) GetOptInt64() int64 {
  147. if x != nil && x.OptInt64 != nil {
  148. return *x.OptInt64
  149. }
  150. return 0
  151. }
  152. func (x *Scalars) GetOptUint32() uint32 {
  153. if x != nil && x.OptUint32 != nil {
  154. return *x.OptUint32
  155. }
  156. return 0
  157. }
  158. func (x *Scalars) GetOptUint64() uint64 {
  159. if x != nil && x.OptUint64 != nil {
  160. return *x.OptUint64
  161. }
  162. return 0
  163. }
  164. func (x *Scalars) GetOptSint32() int32 {
  165. if x != nil && x.OptSint32 != nil {
  166. return *x.OptSint32
  167. }
  168. return 0
  169. }
  170. func (x *Scalars) GetOptSint64() int64 {
  171. if x != nil && x.OptSint64 != nil {
  172. return *x.OptSint64
  173. }
  174. return 0
  175. }
  176. func (x *Scalars) GetOptFixed32() uint32 {
  177. if x != nil && x.OptFixed32 != nil {
  178. return *x.OptFixed32
  179. }
  180. return 0
  181. }
  182. func (x *Scalars) GetOptFixed64() uint64 {
  183. if x != nil && x.OptFixed64 != nil {
  184. return *x.OptFixed64
  185. }
  186. return 0
  187. }
  188. func (x *Scalars) GetOptSfixed32() int32 {
  189. if x != nil && x.OptSfixed32 != nil {
  190. return *x.OptSfixed32
  191. }
  192. return 0
  193. }
  194. func (x *Scalars) GetOptSfixed64() int64 {
  195. if x != nil && x.OptSfixed64 != nil {
  196. return *x.OptSfixed64
  197. }
  198. return 0
  199. }
  200. func (x *Scalars) GetOptFloat() float32 {
  201. if x != nil && x.OptFloat != nil {
  202. return *x.OptFloat
  203. }
  204. return 0
  205. }
  206. func (x *Scalars) GetOptDouble() float64 {
  207. if x != nil && x.OptDouble != nil {
  208. return *x.OptDouble
  209. }
  210. return 0
  211. }
  212. func (x *Scalars) GetOptBytes() []byte {
  213. if x != nil {
  214. return x.OptBytes
  215. }
  216. return nil
  217. }
  218. func (x *Scalars) GetOptString() string {
  219. if x != nil && x.OptString != nil {
  220. return *x.OptString
  221. }
  222. return ""
  223. }
  224. // Message contains enum fields.
  225. type Enums struct {
  226. OptEnum *Enum `protobuf:"varint,1,opt,name=opt_enum,json=optEnum,enum=pb2.Enum" json:"opt_enum,omitempty"`
  227. RptEnum []Enum `protobuf:"varint,2,rep,name=rpt_enum,json=rptEnum,enum=pb2.Enum" json:"rpt_enum,omitempty"`
  228. OptNestedEnum *Enums_NestedEnum `protobuf:"varint,3,opt,name=opt_nested_enum,json=optNestedEnum,enum=pb2.Enums_NestedEnum" json:"opt_nested_enum,omitempty"`
  229. RptNestedEnum []Enums_NestedEnum `protobuf:"varint,4,rep,name=rpt_nested_enum,json=rptNestedEnum,enum=pb2.Enums_NestedEnum" json:"rpt_nested_enum,omitempty"`
  230. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  231. XXX_unrecognized []byte `json:"-"`
  232. XXX_sizecache int32 `json:"-"`
  233. }
  234. func (x *Enums) Reset() {
  235. *x = Enums{}
  236. }
  237. func (x *Enums) String() string {
  238. return protoimpl.X.MessageStringOf(x)
  239. }
  240. func (*Enums) ProtoMessage() {}
  241. func (x *Enums) ProtoReflect() protoreflect.Message {
  242. return xxx_File_pb2_test_proto_messageTypes[1].MessageOf(x)
  243. }
  244. // Deprecated: Use Enums.ProtoReflect.Type instead.
  245. func (*Enums) Descriptor() ([]byte, []int) {
  246. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{1}
  247. }
  248. func (x *Enums) GetOptEnum() Enum {
  249. if x != nil && x.OptEnum != nil {
  250. return *x.OptEnum
  251. }
  252. return Enum_ONE
  253. }
  254. func (x *Enums) GetRptEnum() []Enum {
  255. if x != nil {
  256. return x.RptEnum
  257. }
  258. return nil
  259. }
  260. func (x *Enums) GetOptNestedEnum() Enums_NestedEnum {
  261. if x != nil && x.OptNestedEnum != nil {
  262. return *x.OptNestedEnum
  263. }
  264. return Enums_UNO
  265. }
  266. func (x *Enums) GetRptNestedEnum() []Enums_NestedEnum {
  267. if x != nil {
  268. return x.RptNestedEnum
  269. }
  270. return nil
  271. }
  272. // Message contains repeated fields.
  273. type Repeats struct {
  274. RptBool []bool `protobuf:"varint,1,rep,name=rpt_bool,json=rptBool" json:"rpt_bool,omitempty"`
  275. RptInt32 []int32 `protobuf:"varint,2,rep,name=rpt_int32,json=rptInt32" json:"rpt_int32,omitempty"`
  276. RptInt64 []int64 `protobuf:"varint,3,rep,name=rpt_int64,json=rptInt64" json:"rpt_int64,omitempty"`
  277. RptUint32 []uint32 `protobuf:"varint,4,rep,name=rpt_uint32,json=rptUint32" json:"rpt_uint32,omitempty"`
  278. RptUint64 []uint64 `protobuf:"varint,5,rep,name=rpt_uint64,json=rptUint64" json:"rpt_uint64,omitempty"`
  279. RptFloat []float32 `protobuf:"fixed32,6,rep,name=rpt_float,json=rptFloat" json:"rpt_float,omitempty"`
  280. RptDouble []float64 `protobuf:"fixed64,7,rep,name=rpt_double,json=rptDouble" json:"rpt_double,omitempty"`
  281. RptString []string `protobuf:"bytes,8,rep,name=rpt_string,json=rptString" json:"rpt_string,omitempty"`
  282. RptBytes [][]byte `protobuf:"bytes,9,rep,name=rpt_bytes,json=rptBytes" json:"rpt_bytes,omitempty"`
  283. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  284. XXX_unrecognized []byte `json:"-"`
  285. XXX_sizecache int32 `json:"-"`
  286. }
  287. func (x *Repeats) Reset() {
  288. *x = Repeats{}
  289. }
  290. func (x *Repeats) String() string {
  291. return protoimpl.X.MessageStringOf(x)
  292. }
  293. func (*Repeats) ProtoMessage() {}
  294. func (x *Repeats) ProtoReflect() protoreflect.Message {
  295. return xxx_File_pb2_test_proto_messageTypes[2].MessageOf(x)
  296. }
  297. // Deprecated: Use Repeats.ProtoReflect.Type instead.
  298. func (*Repeats) Descriptor() ([]byte, []int) {
  299. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{2}
  300. }
  301. func (x *Repeats) GetRptBool() []bool {
  302. if x != nil {
  303. return x.RptBool
  304. }
  305. return nil
  306. }
  307. func (x *Repeats) GetRptInt32() []int32 {
  308. if x != nil {
  309. return x.RptInt32
  310. }
  311. return nil
  312. }
  313. func (x *Repeats) GetRptInt64() []int64 {
  314. if x != nil {
  315. return x.RptInt64
  316. }
  317. return nil
  318. }
  319. func (x *Repeats) GetRptUint32() []uint32 {
  320. if x != nil {
  321. return x.RptUint32
  322. }
  323. return nil
  324. }
  325. func (x *Repeats) GetRptUint64() []uint64 {
  326. if x != nil {
  327. return x.RptUint64
  328. }
  329. return nil
  330. }
  331. func (x *Repeats) GetRptFloat() []float32 {
  332. if x != nil {
  333. return x.RptFloat
  334. }
  335. return nil
  336. }
  337. func (x *Repeats) GetRptDouble() []float64 {
  338. if x != nil {
  339. return x.RptDouble
  340. }
  341. return nil
  342. }
  343. func (x *Repeats) GetRptString() []string {
  344. if x != nil {
  345. return x.RptString
  346. }
  347. return nil
  348. }
  349. func (x *Repeats) GetRptBytes() [][]byte {
  350. if x != nil {
  351. return x.RptBytes
  352. }
  353. return nil
  354. }
  355. // Message type used as submessage.
  356. type Nested struct {
  357. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  358. OptNested *Nested `protobuf:"bytes,2,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  359. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  360. XXX_unrecognized []byte `json:"-"`
  361. XXX_sizecache int32 `json:"-"`
  362. }
  363. func (x *Nested) Reset() {
  364. *x = Nested{}
  365. }
  366. func (x *Nested) String() string {
  367. return protoimpl.X.MessageStringOf(x)
  368. }
  369. func (*Nested) ProtoMessage() {}
  370. func (x *Nested) ProtoReflect() protoreflect.Message {
  371. return xxx_File_pb2_test_proto_messageTypes[3].MessageOf(x)
  372. }
  373. // Deprecated: Use Nested.ProtoReflect.Type instead.
  374. func (*Nested) Descriptor() ([]byte, []int) {
  375. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{3}
  376. }
  377. func (x *Nested) GetOptString() string {
  378. if x != nil && x.OptString != nil {
  379. return *x.OptString
  380. }
  381. return ""
  382. }
  383. func (x *Nested) GetOptNested() *Nested {
  384. if x != nil {
  385. return x.OptNested
  386. }
  387. return nil
  388. }
  389. // Message contains message and group fields.
  390. type Nests struct {
  391. OptNested *Nested `protobuf:"bytes,1,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  392. Optgroup *Nests_OptGroup `protobuf:"group,2,opt,name=OptGroup,json=optgroup" json:"optgroup,omitempty"`
  393. RptNested []*Nested `protobuf:"bytes,4,rep,name=rpt_nested,json=rptNested" json:"rpt_nested,omitempty"`
  394. Rptgroup []*Nests_RptGroup `protobuf:"group,5,rep,name=RptGroup,json=rptgroup" json:"rptgroup,omitempty"`
  395. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  396. XXX_unrecognized []byte `json:"-"`
  397. XXX_sizecache int32 `json:"-"`
  398. }
  399. func (x *Nests) Reset() {
  400. *x = Nests{}
  401. }
  402. func (x *Nests) String() string {
  403. return protoimpl.X.MessageStringOf(x)
  404. }
  405. func (*Nests) ProtoMessage() {}
  406. func (x *Nests) ProtoReflect() protoreflect.Message {
  407. return xxx_File_pb2_test_proto_messageTypes[4].MessageOf(x)
  408. }
  409. // Deprecated: Use Nests.ProtoReflect.Type instead.
  410. func (*Nests) Descriptor() ([]byte, []int) {
  411. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{4}
  412. }
  413. func (x *Nests) GetOptNested() *Nested {
  414. if x != nil {
  415. return x.OptNested
  416. }
  417. return nil
  418. }
  419. func (x *Nests) GetOptgroup() *Nests_OptGroup {
  420. if x != nil {
  421. return x.Optgroup
  422. }
  423. return nil
  424. }
  425. func (x *Nests) GetRptNested() []*Nested {
  426. if x != nil {
  427. return x.RptNested
  428. }
  429. return nil
  430. }
  431. func (x *Nests) GetRptgroup() []*Nests_RptGroup {
  432. if x != nil {
  433. return x.Rptgroup
  434. }
  435. return nil
  436. }
  437. // Message contains required fields.
  438. type Requireds struct {
  439. ReqBool *bool `protobuf:"varint,1,req,name=req_bool,json=reqBool" json:"req_bool,omitempty"`
  440. ReqSfixed64 *int64 `protobuf:"fixed64,2,req,name=req_sfixed64,json=reqSfixed64" json:"req_sfixed64,omitempty"`
  441. ReqDouble *float64 `protobuf:"fixed64,3,req,name=req_double,json=reqDouble" json:"req_double,omitempty"`
  442. ReqString *string `protobuf:"bytes,4,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  443. ReqEnum *Enum `protobuf:"varint,5,req,name=req_enum,json=reqEnum,enum=pb2.Enum" json:"req_enum,omitempty"`
  444. ReqNested *Nested `protobuf:"bytes,6,req,name=req_nested,json=reqNested" json:"req_nested,omitempty"`
  445. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  446. XXX_unrecognized []byte `json:"-"`
  447. XXX_sizecache int32 `json:"-"`
  448. }
  449. func (x *Requireds) Reset() {
  450. *x = Requireds{}
  451. }
  452. func (x *Requireds) String() string {
  453. return protoimpl.X.MessageStringOf(x)
  454. }
  455. func (*Requireds) ProtoMessage() {}
  456. func (x *Requireds) ProtoReflect() protoreflect.Message {
  457. return xxx_File_pb2_test_proto_messageTypes[5].MessageOf(x)
  458. }
  459. // Deprecated: Use Requireds.ProtoReflect.Type instead.
  460. func (*Requireds) Descriptor() ([]byte, []int) {
  461. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{5}
  462. }
  463. func (x *Requireds) GetReqBool() bool {
  464. if x != nil && x.ReqBool != nil {
  465. return *x.ReqBool
  466. }
  467. return false
  468. }
  469. func (x *Requireds) GetReqSfixed64() int64 {
  470. if x != nil && x.ReqSfixed64 != nil {
  471. return *x.ReqSfixed64
  472. }
  473. return 0
  474. }
  475. func (x *Requireds) GetReqDouble() float64 {
  476. if x != nil && x.ReqDouble != nil {
  477. return *x.ReqDouble
  478. }
  479. return 0
  480. }
  481. func (x *Requireds) GetReqString() string {
  482. if x != nil && x.ReqString != nil {
  483. return *x.ReqString
  484. }
  485. return ""
  486. }
  487. func (x *Requireds) GetReqEnum() Enum {
  488. if x != nil && x.ReqEnum != nil {
  489. return *x.ReqEnum
  490. }
  491. return Enum_ONE
  492. }
  493. func (x *Requireds) GetReqNested() *Nested {
  494. if x != nil {
  495. return x.ReqNested
  496. }
  497. return nil
  498. }
  499. // Message contains both required and optional fields.
  500. type PartialRequired struct {
  501. ReqString *string `protobuf:"bytes,1,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  502. OptString *string `protobuf:"bytes,2,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  503. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  504. XXX_unrecognized []byte `json:"-"`
  505. XXX_sizecache int32 `json:"-"`
  506. }
  507. func (x *PartialRequired) Reset() {
  508. *x = PartialRequired{}
  509. }
  510. func (x *PartialRequired) String() string {
  511. return protoimpl.X.MessageStringOf(x)
  512. }
  513. func (*PartialRequired) ProtoMessage() {}
  514. func (x *PartialRequired) ProtoReflect() protoreflect.Message {
  515. return xxx_File_pb2_test_proto_messageTypes[6].MessageOf(x)
  516. }
  517. // Deprecated: Use PartialRequired.ProtoReflect.Type instead.
  518. func (*PartialRequired) Descriptor() ([]byte, []int) {
  519. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{6}
  520. }
  521. func (x *PartialRequired) GetReqString() string {
  522. if x != nil && x.ReqString != nil {
  523. return *x.ReqString
  524. }
  525. return ""
  526. }
  527. func (x *PartialRequired) GetOptString() string {
  528. if x != nil && x.OptString != nil {
  529. return *x.OptString
  530. }
  531. return ""
  532. }
  533. type NestedWithRequired struct {
  534. ReqString *string `protobuf:"bytes,1,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  535. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  536. XXX_unrecognized []byte `json:"-"`
  537. XXX_sizecache int32 `json:"-"`
  538. }
  539. func (x *NestedWithRequired) Reset() {
  540. *x = NestedWithRequired{}
  541. }
  542. func (x *NestedWithRequired) String() string {
  543. return protoimpl.X.MessageStringOf(x)
  544. }
  545. func (*NestedWithRequired) ProtoMessage() {}
  546. func (x *NestedWithRequired) ProtoReflect() protoreflect.Message {
  547. return xxx_File_pb2_test_proto_messageTypes[7].MessageOf(x)
  548. }
  549. // Deprecated: Use NestedWithRequired.ProtoReflect.Type instead.
  550. func (*NestedWithRequired) Descriptor() ([]byte, []int) {
  551. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{7}
  552. }
  553. func (x *NestedWithRequired) GetReqString() string {
  554. if x != nil && x.ReqString != nil {
  555. return *x.ReqString
  556. }
  557. return ""
  558. }
  559. type IndirectRequired struct {
  560. OptNested *NestedWithRequired `protobuf:"bytes,1,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  561. RptNested []*NestedWithRequired `protobuf:"bytes,2,rep,name=rpt_nested,json=rptNested" json:"rpt_nested,omitempty"`
  562. StrToNested map[string]*NestedWithRequired `protobuf:"bytes,3,rep,name=str_to_nested,json=strToNested" json:"str_to_nested,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  563. // Types that are valid to be assigned to Union:
  564. // *IndirectRequired_OneofNested
  565. Union isIndirectRequired_Union `protobuf_oneof:"union"`
  566. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  567. XXX_unrecognized []byte `json:"-"`
  568. XXX_sizecache int32 `json:"-"`
  569. }
  570. func (x *IndirectRequired) Reset() {
  571. *x = IndirectRequired{}
  572. }
  573. func (x *IndirectRequired) String() string {
  574. return protoimpl.X.MessageStringOf(x)
  575. }
  576. func (*IndirectRequired) ProtoMessage() {}
  577. func (x *IndirectRequired) ProtoReflect() protoreflect.Message {
  578. return xxx_File_pb2_test_proto_messageTypes[8].MessageOf(x)
  579. }
  580. // Deprecated: Use IndirectRequired.ProtoReflect.Type instead.
  581. func (*IndirectRequired) Descriptor() ([]byte, []int) {
  582. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{8}
  583. }
  584. func (x *IndirectRequired) GetOptNested() *NestedWithRequired {
  585. if x != nil {
  586. return x.OptNested
  587. }
  588. return nil
  589. }
  590. func (x *IndirectRequired) GetRptNested() []*NestedWithRequired {
  591. if x != nil {
  592. return x.RptNested
  593. }
  594. return nil
  595. }
  596. func (x *IndirectRequired) GetStrToNested() map[string]*NestedWithRequired {
  597. if x != nil {
  598. return x.StrToNested
  599. }
  600. return nil
  601. }
  602. type isIndirectRequired_Union interface {
  603. isIndirectRequired_Union()
  604. }
  605. type IndirectRequired_OneofNested struct {
  606. OneofNested *NestedWithRequired `protobuf:"bytes,4,opt,name=oneof_nested,json=oneofNested,oneof"`
  607. }
  608. func (*IndirectRequired_OneofNested) isIndirectRequired_Union() {}
  609. func (m *IndirectRequired) GetUnion() isIndirectRequired_Union {
  610. if m != nil {
  611. return m.Union
  612. }
  613. return nil
  614. }
  615. func (x *IndirectRequired) GetOneofNested() *NestedWithRequired {
  616. if x, ok := x.GetUnion().(*IndirectRequired_OneofNested); ok {
  617. return x.OneofNested
  618. }
  619. return nil
  620. }
  621. // XXX_OneofWrappers is for the internal use of the proto package.
  622. func (*IndirectRequired) XXX_OneofWrappers() []interface{} {
  623. return []interface{}{
  624. (*IndirectRequired_OneofNested)(nil),
  625. }
  626. }
  627. type Extensions struct {
  628. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  629. OptBool *bool `protobuf:"varint,101,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  630. OptInt32 *int32 `protobuf:"varint,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  631. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  632. XXX_InternalExtensions protoimpl.ExtensionFieldsV1 `json:"-"`
  633. XXX_unrecognized []byte `json:"-"`
  634. XXX_sizecache int32 `json:"-"`
  635. }
  636. func (x *Extensions) Reset() {
  637. *x = Extensions{}
  638. }
  639. func (x *Extensions) String() string {
  640. return protoimpl.X.MessageStringOf(x)
  641. }
  642. func (*Extensions) ProtoMessage() {}
  643. func (x *Extensions) ProtoReflect() protoreflect.Message {
  644. return xxx_File_pb2_test_proto_messageTypes[9].MessageOf(x)
  645. }
  646. // Deprecated: Use Extensions.ProtoReflect.Type instead.
  647. func (*Extensions) Descriptor() ([]byte, []int) {
  648. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{9}
  649. }
  650. var extRange_Extensions = []protoiface.ExtensionRangeV1{
  651. {Start: 20, End: 100},
  652. }
  653. // Deprecated: Use Extensions.ProtoReflect.Type.ExtensionRanges instead.
  654. func (*Extensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  655. return extRange_Extensions
  656. }
  657. func (x *Extensions) GetOptString() string {
  658. if x != nil && x.OptString != nil {
  659. return *x.OptString
  660. }
  661. return ""
  662. }
  663. func (x *Extensions) GetOptBool() bool {
  664. if x != nil && x.OptBool != nil {
  665. return *x.OptBool
  666. }
  667. return false
  668. }
  669. func (x *Extensions) GetOptInt32() int32 {
  670. if x != nil && x.OptInt32 != nil {
  671. return *x.OptInt32
  672. }
  673. return 0
  674. }
  675. type ExtensionsContainer struct {
  676. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  677. XXX_unrecognized []byte `json:"-"`
  678. XXX_sizecache int32 `json:"-"`
  679. }
  680. func (x *ExtensionsContainer) Reset() {
  681. *x = ExtensionsContainer{}
  682. }
  683. func (x *ExtensionsContainer) String() string {
  684. return protoimpl.X.MessageStringOf(x)
  685. }
  686. func (*ExtensionsContainer) ProtoMessage() {}
  687. func (x *ExtensionsContainer) ProtoReflect() protoreflect.Message {
  688. return xxx_File_pb2_test_proto_messageTypes[10].MessageOf(x)
  689. }
  690. // Deprecated: Use ExtensionsContainer.ProtoReflect.Type instead.
  691. func (*ExtensionsContainer) Descriptor() ([]byte, []int) {
  692. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{10}
  693. }
  694. type MessageSet struct {
  695. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  696. XXX_InternalExtensions protoimpl.ExtensionFieldsV1 `protobuf_messageset:"1" json:"-"`
  697. XXX_unrecognized []byte `json:"-"`
  698. XXX_sizecache int32 `json:"-"`
  699. }
  700. func (x *MessageSet) Reset() {
  701. *x = MessageSet{}
  702. }
  703. func (x *MessageSet) String() string {
  704. return protoimpl.X.MessageStringOf(x)
  705. }
  706. func (*MessageSet) ProtoMessage() {}
  707. func (x *MessageSet) ProtoReflect() protoreflect.Message {
  708. return xxx_File_pb2_test_proto_messageTypes[11].MessageOf(x)
  709. }
  710. // Deprecated: Use MessageSet.ProtoReflect.Type instead.
  711. func (*MessageSet) Descriptor() ([]byte, []int) {
  712. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{11}
  713. }
  714. var extRange_MessageSet = []protoiface.ExtensionRangeV1{
  715. {Start: 4, End: 2147483646},
  716. }
  717. // Deprecated: Use MessageSet.ProtoReflect.Type.ExtensionRanges instead.
  718. func (*MessageSet) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  719. return extRange_MessageSet
  720. }
  721. type MessageSetExtension struct {
  722. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  723. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  724. XXX_unrecognized []byte `json:"-"`
  725. XXX_sizecache int32 `json:"-"`
  726. }
  727. func (x *MessageSetExtension) Reset() {
  728. *x = MessageSetExtension{}
  729. }
  730. func (x *MessageSetExtension) String() string {
  731. return protoimpl.X.MessageStringOf(x)
  732. }
  733. func (*MessageSetExtension) ProtoMessage() {}
  734. func (x *MessageSetExtension) ProtoReflect() protoreflect.Message {
  735. return xxx_File_pb2_test_proto_messageTypes[12].MessageOf(x)
  736. }
  737. // Deprecated: Use MessageSetExtension.ProtoReflect.Type instead.
  738. func (*MessageSetExtension) Descriptor() ([]byte, []int) {
  739. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{12}
  740. }
  741. func (x *MessageSetExtension) GetOptString() string {
  742. if x != nil && x.OptString != nil {
  743. return *x.OptString
  744. }
  745. return ""
  746. }
  747. type FakeMessageSet struct {
  748. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  749. XXX_InternalExtensions protoimpl.ExtensionFieldsV1 `json:"-"`
  750. XXX_unrecognized []byte `json:"-"`
  751. XXX_sizecache int32 `json:"-"`
  752. }
  753. func (x *FakeMessageSet) Reset() {
  754. *x = FakeMessageSet{}
  755. }
  756. func (x *FakeMessageSet) String() string {
  757. return protoimpl.X.MessageStringOf(x)
  758. }
  759. func (*FakeMessageSet) ProtoMessage() {}
  760. func (x *FakeMessageSet) ProtoReflect() protoreflect.Message {
  761. return xxx_File_pb2_test_proto_messageTypes[13].MessageOf(x)
  762. }
  763. // Deprecated: Use FakeMessageSet.ProtoReflect.Type instead.
  764. func (*FakeMessageSet) Descriptor() ([]byte, []int) {
  765. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{13}
  766. }
  767. var extRange_FakeMessageSet = []protoiface.ExtensionRangeV1{
  768. {Start: 4, End: 536870911},
  769. }
  770. // Deprecated: Use FakeMessageSet.ProtoReflect.Type.ExtensionRanges instead.
  771. func (*FakeMessageSet) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  772. return extRange_FakeMessageSet
  773. }
  774. type FakeMessageSetExtension struct {
  775. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  776. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  777. XXX_unrecognized []byte `json:"-"`
  778. XXX_sizecache int32 `json:"-"`
  779. }
  780. func (x *FakeMessageSetExtension) Reset() {
  781. *x = FakeMessageSetExtension{}
  782. }
  783. func (x *FakeMessageSetExtension) String() string {
  784. return protoimpl.X.MessageStringOf(x)
  785. }
  786. func (*FakeMessageSetExtension) ProtoMessage() {}
  787. func (x *FakeMessageSetExtension) ProtoReflect() protoreflect.Message {
  788. return xxx_File_pb2_test_proto_messageTypes[14].MessageOf(x)
  789. }
  790. // Deprecated: Use FakeMessageSetExtension.ProtoReflect.Type instead.
  791. func (*FakeMessageSetExtension) Descriptor() ([]byte, []int) {
  792. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{14}
  793. }
  794. func (x *FakeMessageSetExtension) GetOptString() string {
  795. if x != nil && x.OptString != nil {
  796. return *x.OptString
  797. }
  798. return ""
  799. }
  800. // Message contains well-known type fields.
  801. type KnownTypes struct {
  802. OptBool *known.BoolValue `protobuf:"bytes,1,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  803. OptInt32 *known.Int32Value `protobuf:"bytes,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  804. OptInt64 *known.Int64Value `protobuf:"bytes,3,opt,name=opt_int64,json=optInt64" json:"opt_int64,omitempty"`
  805. OptUint32 *known.UInt32Value `protobuf:"bytes,4,opt,name=opt_uint32,json=optUint32" json:"opt_uint32,omitempty"`
  806. OptUint64 *known.UInt64Value `protobuf:"bytes,5,opt,name=opt_uint64,json=optUint64" json:"opt_uint64,omitempty"`
  807. OptFloat *known.FloatValue `protobuf:"bytes,6,opt,name=opt_float,json=optFloat" json:"opt_float,omitempty"`
  808. OptDouble *known.DoubleValue `protobuf:"bytes,7,opt,name=opt_double,json=optDouble" json:"opt_double,omitempty"`
  809. OptString *known.StringValue `protobuf:"bytes,8,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  810. OptBytes *known.BytesValue `protobuf:"bytes,9,opt,name=opt_bytes,json=optBytes" json:"opt_bytes,omitempty"`
  811. OptDuration *known.Duration `protobuf:"bytes,20,opt,name=opt_duration,json=optDuration" json:"opt_duration,omitempty"`
  812. OptTimestamp *known.Timestamp `protobuf:"bytes,21,opt,name=opt_timestamp,json=optTimestamp" json:"opt_timestamp,omitempty"`
  813. OptStruct *known.Struct `protobuf:"bytes,25,opt,name=opt_struct,json=optStruct" json:"opt_struct,omitempty"`
  814. OptList *known.ListValue `protobuf:"bytes,26,opt,name=opt_list,json=optList" json:"opt_list,omitempty"`
  815. OptValue *known.Value `protobuf:"bytes,27,opt,name=opt_value,json=optValue" json:"opt_value,omitempty"`
  816. OptNull *known.NullValue `protobuf:"varint,28,opt,name=opt_null,json=optNull,enum=google.protobuf.NullValue" json:"opt_null,omitempty"`
  817. OptEmpty *known.Empty `protobuf:"bytes,30,opt,name=opt_empty,json=optEmpty" json:"opt_empty,omitempty"`
  818. OptAny *known.Any `protobuf:"bytes,32,opt,name=opt_any,json=optAny" json:"opt_any,omitempty"`
  819. OptFieldmask *known.FieldMask `protobuf:"bytes,40,opt,name=opt_fieldmask,json=optFieldmask" json:"opt_fieldmask,omitempty"`
  820. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  821. XXX_unrecognized []byte `json:"-"`
  822. XXX_sizecache int32 `json:"-"`
  823. }
  824. func (x *KnownTypes) Reset() {
  825. *x = KnownTypes{}
  826. }
  827. func (x *KnownTypes) String() string {
  828. return protoimpl.X.MessageStringOf(x)
  829. }
  830. func (*KnownTypes) ProtoMessage() {}
  831. func (x *KnownTypes) ProtoReflect() protoreflect.Message {
  832. return xxx_File_pb2_test_proto_messageTypes[15].MessageOf(x)
  833. }
  834. // Deprecated: Use KnownTypes.ProtoReflect.Type instead.
  835. func (*KnownTypes) Descriptor() ([]byte, []int) {
  836. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{15}
  837. }
  838. func (x *KnownTypes) GetOptBool() *known.BoolValue {
  839. if x != nil {
  840. return x.OptBool
  841. }
  842. return nil
  843. }
  844. func (x *KnownTypes) GetOptInt32() *known.Int32Value {
  845. if x != nil {
  846. return x.OptInt32
  847. }
  848. return nil
  849. }
  850. func (x *KnownTypes) GetOptInt64() *known.Int64Value {
  851. if x != nil {
  852. return x.OptInt64
  853. }
  854. return nil
  855. }
  856. func (x *KnownTypes) GetOptUint32() *known.UInt32Value {
  857. if x != nil {
  858. return x.OptUint32
  859. }
  860. return nil
  861. }
  862. func (x *KnownTypes) GetOptUint64() *known.UInt64Value {
  863. if x != nil {
  864. return x.OptUint64
  865. }
  866. return nil
  867. }
  868. func (x *KnownTypes) GetOptFloat() *known.FloatValue {
  869. if x != nil {
  870. return x.OptFloat
  871. }
  872. return nil
  873. }
  874. func (x *KnownTypes) GetOptDouble() *known.DoubleValue {
  875. if x != nil {
  876. return x.OptDouble
  877. }
  878. return nil
  879. }
  880. func (x *KnownTypes) GetOptString() *known.StringValue {
  881. if x != nil {
  882. return x.OptString
  883. }
  884. return nil
  885. }
  886. func (x *KnownTypes) GetOptBytes() *known.BytesValue {
  887. if x != nil {
  888. return x.OptBytes
  889. }
  890. return nil
  891. }
  892. func (x *KnownTypes) GetOptDuration() *known.Duration {
  893. if x != nil {
  894. return x.OptDuration
  895. }
  896. return nil
  897. }
  898. func (x *KnownTypes) GetOptTimestamp() *known.Timestamp {
  899. if x != nil {
  900. return x.OptTimestamp
  901. }
  902. return nil
  903. }
  904. func (x *KnownTypes) GetOptStruct() *known.Struct {
  905. if x != nil {
  906. return x.OptStruct
  907. }
  908. return nil
  909. }
  910. func (x *KnownTypes) GetOptList() *known.ListValue {
  911. if x != nil {
  912. return x.OptList
  913. }
  914. return nil
  915. }
  916. func (x *KnownTypes) GetOptValue() *known.Value {
  917. if x != nil {
  918. return x.OptValue
  919. }
  920. return nil
  921. }
  922. func (x *KnownTypes) GetOptNull() known.NullValue {
  923. if x != nil && x.OptNull != nil {
  924. return *x.OptNull
  925. }
  926. return known.NullValue_NULL_VALUE
  927. }
  928. func (x *KnownTypes) GetOptEmpty() *known.Empty {
  929. if x != nil {
  930. return x.OptEmpty
  931. }
  932. return nil
  933. }
  934. func (x *KnownTypes) GetOptAny() *known.Any {
  935. if x != nil {
  936. return x.OptAny
  937. }
  938. return nil
  939. }
  940. func (x *KnownTypes) GetOptFieldmask() *known.FieldMask {
  941. if x != nil {
  942. return x.OptFieldmask
  943. }
  944. return nil
  945. }
  946. type Nests_OptGroup struct {
  947. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  948. OptNested *Nested `protobuf:"bytes,2,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  949. Optnestedgroup *Nests_OptGroup_OptNestedGroup `protobuf:"group,3,opt,name=OptNestedGroup,json=optnestedgroup" json:"optnestedgroup,omitempty"`
  950. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  951. XXX_unrecognized []byte `json:"-"`
  952. XXX_sizecache int32 `json:"-"`
  953. }
  954. func (x *Nests_OptGroup) Reset() {
  955. *x = Nests_OptGroup{}
  956. }
  957. func (x *Nests_OptGroup) String() string {
  958. return protoimpl.X.MessageStringOf(x)
  959. }
  960. func (*Nests_OptGroup) ProtoMessage() {}
  961. func (x *Nests_OptGroup) ProtoReflect() protoreflect.Message {
  962. return xxx_File_pb2_test_proto_messageTypes[16].MessageOf(x)
  963. }
  964. // Deprecated: Use Nests_OptGroup.ProtoReflect.Type instead.
  965. func (*Nests_OptGroup) Descriptor() ([]byte, []int) {
  966. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{4, 0}
  967. }
  968. func (x *Nests_OptGroup) GetOptString() string {
  969. if x != nil && x.OptString != nil {
  970. return *x.OptString
  971. }
  972. return ""
  973. }
  974. func (x *Nests_OptGroup) GetOptNested() *Nested {
  975. if x != nil {
  976. return x.OptNested
  977. }
  978. return nil
  979. }
  980. func (x *Nests_OptGroup) GetOptnestedgroup() *Nests_OptGroup_OptNestedGroup {
  981. if x != nil {
  982. return x.Optnestedgroup
  983. }
  984. return nil
  985. }
  986. type Nests_RptGroup struct {
  987. RptString []string `protobuf:"bytes,1,rep,name=rpt_string,json=rptString" json:"rpt_string,omitempty"`
  988. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  989. XXX_unrecognized []byte `json:"-"`
  990. XXX_sizecache int32 `json:"-"`
  991. }
  992. func (x *Nests_RptGroup) Reset() {
  993. *x = Nests_RptGroup{}
  994. }
  995. func (x *Nests_RptGroup) String() string {
  996. return protoimpl.X.MessageStringOf(x)
  997. }
  998. func (*Nests_RptGroup) ProtoMessage() {}
  999. func (x *Nests_RptGroup) ProtoReflect() protoreflect.Message {
  1000. return xxx_File_pb2_test_proto_messageTypes[17].MessageOf(x)
  1001. }
  1002. // Deprecated: Use Nests_RptGroup.ProtoReflect.Type instead.
  1003. func (*Nests_RptGroup) Descriptor() ([]byte, []int) {
  1004. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{4, 1}
  1005. }
  1006. func (x *Nests_RptGroup) GetRptString() []string {
  1007. if x != nil {
  1008. return x.RptString
  1009. }
  1010. return nil
  1011. }
  1012. type Nests_OptGroup_OptNestedGroup struct {
  1013. OptFixed32 *uint32 `protobuf:"fixed32,1,opt,name=opt_fixed32,json=optFixed32" json:"opt_fixed32,omitempty"`
  1014. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1015. XXX_unrecognized []byte `json:"-"`
  1016. XXX_sizecache int32 `json:"-"`
  1017. }
  1018. func (x *Nests_OptGroup_OptNestedGroup) Reset() {
  1019. *x = Nests_OptGroup_OptNestedGroup{}
  1020. }
  1021. func (x *Nests_OptGroup_OptNestedGroup) String() string {
  1022. return protoimpl.X.MessageStringOf(x)
  1023. }
  1024. func (*Nests_OptGroup_OptNestedGroup) ProtoMessage() {}
  1025. func (x *Nests_OptGroup_OptNestedGroup) ProtoReflect() protoreflect.Message {
  1026. return xxx_File_pb2_test_proto_messageTypes[18].MessageOf(x)
  1027. }
  1028. // Deprecated: Use Nests_OptGroup_OptNestedGroup.ProtoReflect.Type instead.
  1029. func (*Nests_OptGroup_OptNestedGroup) Descriptor() ([]byte, []int) {
  1030. return xxx_File_pb2_test_proto_rawDescGZIP(), []int{4, 0, 0}
  1031. }
  1032. func (x *Nests_OptGroup_OptNestedGroup) GetOptFixed32() uint32 {
  1033. if x != nil && x.OptFixed32 != nil {
  1034. return *x.OptFixed32
  1035. }
  1036. return 0
  1037. }
  1038. var xxx_File_pb2_test_proto_extDescs = []protoiface.ExtensionDescV1{
  1039. {
  1040. ExtendedType: (*Extensions)(nil),
  1041. ExtensionType: (*bool)(nil),
  1042. Field: 21,
  1043. Name: "pb2.opt_ext_bool",
  1044. Tag: "varint,21,opt,name=opt_ext_bool",
  1045. Filename: "pb2/test.proto",
  1046. },
  1047. {
  1048. ExtendedType: (*Extensions)(nil),
  1049. ExtensionType: (*string)(nil),
  1050. Field: 22,
  1051. Name: "pb2.opt_ext_string",
  1052. Tag: "bytes,22,opt,name=opt_ext_string",
  1053. Filename: "pb2/test.proto",
  1054. },
  1055. {
  1056. ExtendedType: (*Extensions)(nil),
  1057. ExtensionType: (*Enum)(nil),
  1058. Field: 23,
  1059. Name: "pb2.opt_ext_enum",
  1060. Tag: "varint,23,opt,name=opt_ext_enum,enum=pb2.Enum",
  1061. Filename: "pb2/test.proto",
  1062. },
  1063. {
  1064. ExtendedType: (*Extensions)(nil),
  1065. ExtensionType: (*Nested)(nil),
  1066. Field: 24,
  1067. Name: "pb2.opt_ext_nested",
  1068. Tag: "bytes,24,opt,name=opt_ext_nested",
  1069. Filename: "pb2/test.proto",
  1070. },
  1071. {
  1072. ExtendedType: (*Extensions)(nil),
  1073. ExtensionType: ([]uint32)(nil),
  1074. Field: 31,
  1075. Name: "pb2.rpt_ext_fixed32",
  1076. Tag: "fixed32,31,rep,name=rpt_ext_fixed32",
  1077. Filename: "pb2/test.proto",
  1078. },
  1079. {
  1080. ExtendedType: (*Extensions)(nil),
  1081. ExtensionType: ([]Enum)(nil),
  1082. Field: 32,
  1083. Name: "pb2.rpt_ext_enum",
  1084. Tag: "varint,32,rep,name=rpt_ext_enum,enum=pb2.Enum",
  1085. Filename: "pb2/test.proto",
  1086. },
  1087. {
  1088. ExtendedType: (*Extensions)(nil),
  1089. ExtensionType: ([]*Nested)(nil),
  1090. Field: 33,
  1091. Name: "pb2.rpt_ext_nested",
  1092. Tag: "bytes,33,rep,name=rpt_ext_nested",
  1093. Filename: "pb2/test.proto",
  1094. },
  1095. {
  1096. ExtendedType: (*MessageSet)(nil),
  1097. ExtensionType: (*FakeMessageSetExtension)(nil),
  1098. Field: 50,
  1099. Name: "pb2.",
  1100. Tag: "bytes,50,opt,name=message_set_extension",
  1101. Filename: "pb2/test.proto",
  1102. },
  1103. {
  1104. ExtendedType: (*Extensions)(nil),
  1105. ExtensionType: (*bool)(nil),
  1106. Field: 51,
  1107. Name: "pb2.ExtensionsContainer.opt_ext_bool",
  1108. Tag: "varint,51,opt,name=opt_ext_bool",
  1109. Filename: "pb2/test.proto",
  1110. },
  1111. {
  1112. ExtendedType: (*Extensions)(nil),
  1113. ExtensionType: (*string)(nil),
  1114. Field: 52,
  1115. Name: "pb2.ExtensionsContainer.opt_ext_string",
  1116. Tag: "bytes,52,opt,name=opt_ext_string",
  1117. Filename: "pb2/test.proto",
  1118. },
  1119. {
  1120. ExtendedType: (*Extensions)(nil),
  1121. ExtensionType: (*Enum)(nil),
  1122. Field: 53,
  1123. Name: "pb2.ExtensionsContainer.opt_ext_enum",
  1124. Tag: "varint,53,opt,name=opt_ext_enum,enum=pb2.Enum",
  1125. Filename: "pb2/test.proto",
  1126. },
  1127. {
  1128. ExtendedType: (*Extensions)(nil),
  1129. ExtensionType: (*Nested)(nil),
  1130. Field: 54,
  1131. Name: "pb2.ExtensionsContainer.opt_ext_nested",
  1132. Tag: "bytes,54,opt,name=opt_ext_nested",
  1133. Filename: "pb2/test.proto",
  1134. },
  1135. {
  1136. ExtendedType: (*Extensions)(nil),
  1137. ExtensionType: ([]string)(nil),
  1138. Field: 61,
  1139. Name: "pb2.ExtensionsContainer.rpt_ext_string",
  1140. Tag: "bytes,61,rep,name=rpt_ext_string",
  1141. Filename: "pb2/test.proto",
  1142. },
  1143. {
  1144. ExtendedType: (*Extensions)(nil),
  1145. ExtensionType: ([]Enum)(nil),
  1146. Field: 62,
  1147. Name: "pb2.ExtensionsContainer.rpt_ext_enum",
  1148. Tag: "varint,62,rep,name=rpt_ext_enum,enum=pb2.Enum",
  1149. Filename: "pb2/test.proto",
  1150. },
  1151. {
  1152. ExtendedType: (*Extensions)(nil),
  1153. ExtensionType: ([]*Nested)(nil),
  1154. Field: 63,
  1155. Name: "pb2.ExtensionsContainer.rpt_ext_nested",
  1156. Tag: "bytes,63,rep,name=rpt_ext_nested",
  1157. Filename: "pb2/test.proto",
  1158. },
  1159. {
  1160. ExtendedType: (*MessageSet)(nil),
  1161. ExtensionType: (*MessageSetExtension)(nil),
  1162. Field: 10,
  1163. Name: "pb2.MessageSetExtension",
  1164. Tag: "bytes,10,opt,name=message_set_extension",
  1165. Filename: "pb2/test.proto",
  1166. },
  1167. {
  1168. ExtendedType: (*MessageSet)(nil),
  1169. ExtensionType: (*MessageSetExtension)(nil),
  1170. Field: 20,
  1171. Name: "pb2.MessageSetExtension.not_message_set_extension",
  1172. Tag: "bytes,20,opt,name=not_message_set_extension",
  1173. Filename: "pb2/test.proto",
  1174. },
  1175. {
  1176. ExtendedType: (*MessageSet)(nil),
  1177. ExtensionType: (*Nested)(nil),
  1178. Field: 30,
  1179. Name: "pb2.MessageSetExtension.ext_nested",
  1180. Tag: "bytes,30,opt,name=ext_nested",
  1181. Filename: "pb2/test.proto",
  1182. },
  1183. {
  1184. ExtendedType: (*FakeMessageSet)(nil),
  1185. ExtensionType: (*FakeMessageSetExtension)(nil),
  1186. Field: 10,
  1187. Name: "pb2.FakeMessageSetExtension.message_set_extension",
  1188. Tag: "bytes,10,opt,name=message_set_extension",
  1189. Filename: "pb2/test.proto",
  1190. },
  1191. }
  1192. var (
  1193. // extend pb2.Extensions { optional bool opt_ext_bool = 21; }
  1194. E_OptExtBool = &xxx_File_pb2_test_proto_extDescs[0]
  1195. // extend pb2.Extensions { optional string opt_ext_string = 22; }
  1196. E_OptExtString = &xxx_File_pb2_test_proto_extDescs[1]
  1197. // extend pb2.Extensions { optional pb2.Enum opt_ext_enum = 23; }
  1198. E_OptExtEnum = &xxx_File_pb2_test_proto_extDescs[2]
  1199. // extend pb2.Extensions { optional pb2.Nested opt_ext_nested = 24; }
  1200. E_OptExtNested = &xxx_File_pb2_test_proto_extDescs[3]
  1201. // extend pb2.Extensions { repeated fixed32 rpt_ext_fixed32 = 31; }
  1202. E_RptExtFixed32 = &xxx_File_pb2_test_proto_extDescs[4]
  1203. // extend pb2.Extensions { repeated pb2.Enum rpt_ext_enum = 32; }
  1204. E_RptExtEnum = &xxx_File_pb2_test_proto_extDescs[5]
  1205. // extend pb2.Extensions { repeated pb2.Nested rpt_ext_nested = 33; }
  1206. E_RptExtNested = &xxx_File_pb2_test_proto_extDescs[6]
  1207. // extend pb2.MessageSet { optional pb2.FakeMessageSetExtension message_set_extension = 50; }
  1208. E_MessageSetExtension = &xxx_File_pb2_test_proto_extDescs[7]
  1209. // extend pb2.Extensions { optional bool opt_ext_bool = 51; }
  1210. E_ExtensionsContainer_OptExtBool = &xxx_File_pb2_test_proto_extDescs[8]
  1211. // extend pb2.Extensions { optional string opt_ext_string = 52; }
  1212. E_ExtensionsContainer_OptExtString = &xxx_File_pb2_test_proto_extDescs[9]
  1213. // extend pb2.Extensions { optional pb2.Enum opt_ext_enum = 53; }
  1214. E_ExtensionsContainer_OptExtEnum = &xxx_File_pb2_test_proto_extDescs[10]
  1215. // extend pb2.Extensions { optional pb2.Nested opt_ext_nested = 54; }
  1216. E_ExtensionsContainer_OptExtNested = &xxx_File_pb2_test_proto_extDescs[11]
  1217. // extend pb2.Extensions { repeated string rpt_ext_string = 61; }
  1218. E_ExtensionsContainer_RptExtString = &xxx_File_pb2_test_proto_extDescs[12]
  1219. // extend pb2.Extensions { repeated pb2.Enum rpt_ext_enum = 62; }
  1220. E_ExtensionsContainer_RptExtEnum = &xxx_File_pb2_test_proto_extDescs[13]
  1221. // extend pb2.Extensions { repeated pb2.Nested rpt_ext_nested = 63; }
  1222. E_ExtensionsContainer_RptExtNested = &xxx_File_pb2_test_proto_extDescs[14]
  1223. // extend pb2.MessageSet { optional pb2.MessageSetExtension message_set_extension = 10; }
  1224. E_MessageSetExtension_MessageSetExtension = &xxx_File_pb2_test_proto_extDescs[15]
  1225. // extend pb2.MessageSet { optional pb2.MessageSetExtension not_message_set_extension = 20; }
  1226. E_MessageSetExtension_NotMessageSetExtension = &xxx_File_pb2_test_proto_extDescs[16]
  1227. // extend pb2.MessageSet { optional pb2.Nested ext_nested = 30; }
  1228. E_MessageSetExtension_ExtNested = &xxx_File_pb2_test_proto_extDescs[17]
  1229. // extend pb2.FakeMessageSet { optional pb2.FakeMessageSetExtension message_set_extension = 10; }
  1230. E_FakeMessageSetExtension_MessageSetExtension = &xxx_File_pb2_test_proto_extDescs[18]
  1231. )
  1232. var File_pb2_test_proto protoreflect.FileDescriptor
  1233. var xxx_File_pb2_test_proto_rawDesc = []byte{
  1234. 0x0a, 0x0e, 0x70, 0x62, 0x32, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1235. 0x12, 0x03, 0x70, 0x62, 0x32, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72,
  1236. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1237. 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1238. 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67,
  1239. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66,
  1240. 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1241. 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1242. 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1243. 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1244. 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
  1245. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
  1246. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e,
  1247. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  1248. 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xda,
  1249. 0x03, 0x0a, 0x07, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x70,
  1250. 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, 0x70,
  1251. 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74,
  1252. 0x33, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74,
  1253. 0x33, 0x32, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  1254. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  1255. 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x04, 0x20,
  1256. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d,
  1257. 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05, 0x20, 0x01,
  1258. 0x28, 0x04, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1d, 0x0a,
  1259. 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x06, 0x20, 0x01, 0x28,
  1260. 0x11, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d, 0x0a, 0x0a,
  1261. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x07, 0x20, 0x01, 0x28, 0x12,
  1262. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1f, 0x0a, 0x0b, 0x6f,
  1263. 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x08, 0x20, 0x01, 0x28, 0x07,
  1264. 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x1f, 0x0a, 0x0b,
  1265. 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x09, 0x20, 0x01, 0x28,
  1266. 0x06, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x21, 0x0a,
  1267. 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x0a, 0x20,
  1268. 0x01, 0x28, 0x0f, 0x52, 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  1269. 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  1270. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x10, 0x52, 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65,
  1271. 0x64, 0x36, 0x34, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  1272. 0x18, 0x14, 0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74,
  1273. 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x15,
  1274. 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12,
  1275. 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x0e, 0x20, 0x01,
  1276. 0x28, 0x0c, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a,
  1277. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  1278. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0xfb, 0x01, 0x0a, 0x05,
  1279. 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x12, 0x24, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75,
  1280. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e,
  1281. 0x75, 0x6d, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x08, 0x72,
  1282. 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e,
  1283. 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x07, 0x72, 0x70, 0x74, 0x45, 0x6e, 0x75,
  1284. 0x6d, 0x12, 0x3d, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  1285. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x32,
  1286. 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75,
  1287. 0x6d, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  1288. 0x12, 0x3d, 0x0a, 0x0f, 0x72, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65,
  1289. 0x6e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1290. 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  1291. 0x52, 0x0d, 0x72, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22,
  1292. 0x28, 0x0a, 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a,
  1293. 0x03, 0x55, 0x4e, 0x4f, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x44, 0x4f, 0x53, 0x10, 0x02, 0x12,
  1294. 0x08, 0x0a, 0x04, 0x44, 0x49, 0x45, 0x5a, 0x10, 0x0a, 0x22, 0x94, 0x02, 0x0a, 0x07, 0x52, 0x65,
  1295. 0x70, 0x65, 0x61, 0x74, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x70, 0x74, 0x5f, 0x62, 0x6f, 0x6f,
  1296. 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x08, 0x52, 0x07, 0x72, 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c,
  1297. 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x02, 0x20,
  1298. 0x03, 0x28, 0x05, 0x52, 0x08, 0x72, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1b, 0x0a,
  1299. 0x09, 0x72, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x03, 0x20, 0x03, 0x28, 0x03,
  1300. 0x52, 0x08, 0x72, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70,
  1301. 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09,
  1302. 0x72, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74,
  1303. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05, 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x72,
  1304. 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f,
  1305. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x02, 0x52, 0x08, 0x72, 0x70, 0x74,
  1306. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74, 0x5f, 0x64, 0x6f, 0x75,
  1307. 0x62, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x01, 0x52, 0x09, 0x72, 0x70, 0x74, 0x44, 0x6f,
  1308. 0x75, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1309. 0x6e, 0x67, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x72, 0x70, 0x74, 0x53, 0x74, 0x72,
  1310. 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  1311. 0x18, 0x09, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x08, 0x72, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73,
  1312. 0x22, 0x53, 0x0a, 0x06, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70,
  1313. 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1314. 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1315. 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e,
  1316. 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e,
  1317. 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0xd3, 0x03, 0x0a, 0x05, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x12,
  1318. 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x01, 0x20,
  1319. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1320. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x08, 0x6f,
  1321. 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x13, 0x2e,
  1322. 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x47, 0x72, 0x6f,
  1323. 0x75, 0x70, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2a, 0x0a, 0x0a,
  1324. 0x72, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  1325. 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x72,
  1326. 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x08, 0x72, 0x70, 0x74, 0x67,
  1327. 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x32,
  1328. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x52, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52,
  1329. 0x08, 0x72, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0xd4, 0x01, 0x0a, 0x08, 0x4f, 0x70,
  1330. 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74,
  1331. 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53,
  1332. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73,
  1333. 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1334. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65,
  1335. 0x64, 0x12, 0x4a, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x67, 0x72,
  1336. 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x22, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1337. 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x4f,
  1338. 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0e, 0x6f,
  1339. 0x70, 0x74, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x31, 0x0a,
  1340. 0x0e, 0x4f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12,
  1341. 0x1f, 0x0a, 0x0b, 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x01,
  1342. 0x20, 0x01, 0x28, 0x07, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  1343. 0x1a, 0x29, 0x0a, 0x08, 0x52, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  1344. 0x72, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  1345. 0x52, 0x09, 0x72, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0e, 0x72, 0x65, 0x73,
  1346. 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0xd9, 0x01, 0x0a, 0x09,
  1347. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65, 0x71,
  1348. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x02, 0x28, 0x08, 0x52, 0x07, 0x72, 0x65, 0x71,
  1349. 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x66, 0x69, 0x78,
  1350. 0x65, 0x64, 0x36, 0x34, 0x18, 0x02, 0x20, 0x02, 0x28, 0x10, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x53,
  1351. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x64,
  1352. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x02, 0x28, 0x01, 0x52, 0x09, 0x72, 0x65, 0x71,
  1353. 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x74,
  1354. 0x72, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x53,
  1355. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x24, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x5f, 0x65, 0x6e, 0x75,
  1356. 0x6d, 0x18, 0x05, 0x20, 0x02, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e,
  1357. 0x75, 0x6d, 0x52, 0x07, 0x72, 0x65, 0x71, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x2a, 0x0a, 0x0a, 0x72,
  1358. 0x65, 0x71, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x06, 0x20, 0x02, 0x28, 0x0b, 0x32,
  1359. 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x72, 0x65,
  1360. 0x71, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x4f, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x69,
  1361. 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65,
  1362. 0x71, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09,
  1363. 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1364. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  1365. 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x33, 0x0a, 0x12, 0x4e, 0x65, 0x73, 0x74,
  1366. 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1d,
  1367. 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x02,
  1368. 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0xee, 0x02,
  1369. 0x0a, 0x10, 0x49, 0x6e, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  1370. 0x65, 0x64, 0x12, 0x36, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1371. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73,
  1372. 0x74, 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52,
  1373. 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x36, 0x0a, 0x0a, 0x72, 0x70,
  1374. 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17,
  1375. 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52,
  1376. 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x09, 0x72, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74,
  1377. 0x65, 0x64, 0x12, 0x4a, 0x0a, 0x0d, 0x73, 0x74, 0x72, 0x5f, 0x74, 0x6f, 0x5f, 0x6e, 0x65, 0x73,
  1378. 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1379. 0x49, 0x6e, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  1380. 0x2e, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x72,
  1381. 0x79, 0x52, 0x0b, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x3c,
  1382. 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x04,
  1383. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65,
  1384. 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x48, 0x00, 0x52,
  1385. 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x1a, 0x57, 0x0a, 0x10,
  1386. 0x53, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1387. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  1388. 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1389. 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x57, 0x69,
  1390. 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1391. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x22, 0x69,
  1392. 0x0a, 0x0a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1d, 0x0a, 0x0a,
  1393. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1394. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x19, 0x0a, 0x08, 0x6f,
  1395. 0x70, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x65, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f,
  1396. 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e,
  1397. 0x74, 0x33, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e,
  1398. 0x74, 0x33, 0x32, 0x2a, 0x04, 0x08, 0x14, 0x10, 0x65, 0x22, 0xba, 0x03, 0x0a, 0x13, 0x45, 0x78,
  1399. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
  1400. 0x72, 0x32, 0x31, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x62, 0x6f, 0x6f,
  1401. 0x6c, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  1402. 0x6e, 0x73, 0x18, 0x33, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74,
  1403. 0x42, 0x6f, 0x6f, 0x6c, 0x32, 0x35, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f,
  1404. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74,
  1405. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x34, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f,
  1406. 0x70, 0x74, 0x45, 0x78, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x3c, 0x0a, 0x0c, 0x6f,
  1407. 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1408. 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x35, 0x20, 0x01,
  1409. 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x6f,
  1410. 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x32, 0x42, 0x0a, 0x0e, 0x6f, 0x70, 0x74,
  1411. 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1412. 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x36, 0x20, 0x01,
  1413. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52,
  1414. 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x35, 0x0a,
  1415. 0x0e, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12,
  1416. 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  1417. 0x18, 0x3d, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x53, 0x74,
  1418. 0x72, 0x69, 0x6e, 0x67, 0x32, 0x3c, 0x0a, 0x0c, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f,
  1419. 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e,
  1420. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62,
  1421. 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e,
  1422. 0x75, 0x6d, 0x32, 0x42, 0x0a, 0x0e, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65,
  1423. 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e,
  1424. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62,
  1425. 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74,
  1426. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x1a, 0x0a, 0x0a, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1427. 0x65, 0x53, 0x65, 0x74, 0x2a, 0x08, 0x08, 0x04, 0x10, 0xff, 0xff, 0xff, 0xff, 0x07, 0x3a, 0x02,
  1428. 0x08, 0x01, 0x22, 0xb6, 0x02, 0x0a, 0x13, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65,
  1429. 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70,
  1430. 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1431. 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x5d, 0x0a, 0x15, 0x6d, 0x65, 0x73,
  1432. 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1433. 0x6f, 0x6e, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1434. 0x53, 0x65, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1435. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  1436. 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45,
  1437. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x64, 0x0a, 0x19, 0x6e, 0x6f, 0x74, 0x5f,
  1438. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65,
  1439. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  1440. 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70,
  1441. 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74,
  1442. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x6e, 0x6f, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1443. 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x3b,
  1444. 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70,
  1445. 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x1e, 0x20,
  1446. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1447. 0x52, 0x09, 0x65, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x1a, 0x0a, 0x0e, 0x46,
  1448. 0x61, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x2a, 0x08, 0x08,
  1449. 0x04, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x9f, 0x01, 0x0a, 0x17, 0x46, 0x61, 0x6b, 0x65,
  1450. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  1451. 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
  1452. 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69,
  1453. 0x6e, 0x67, 0x32, 0x65, 0x0a, 0x15, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65,
  1454. 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x2e, 0x70, 0x62,
  1455. 0x32, 0x2e, 0x46, 0x61, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1456. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x46, 0x61, 0x6b,
  1457. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e,
  1458. 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1459. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x08, 0x0a, 0x0a, 0x4b, 0x6e,
  1460. 0x6f, 0x77, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f,
  1461. 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
  1462. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f,
  1463. 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12,
  1464. 0x38, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x02, 0x20, 0x01,
  1465. 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1466. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  1467. 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x38, 0x0a, 0x09, 0x6f, 0x70, 0x74,
  1468. 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67,
  1469. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49,
  1470. 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e,
  1471. 0x74, 0x36, 0x34, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33,
  1472. 0x32, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1473. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32,
  1474. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32,
  1475. 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05,
  1476. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1477. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
  1478. 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x38, 0x0a,
  1479. 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
  1480. 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1481. 0x75, 0x66, 0x2e, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f,
  1482. 0x70, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x64,
  1483. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f,
  1484. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x6f,
  1485. 0x75, 0x62, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x44, 0x6f,
  1486. 0x75, 0x62, 0x6c, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1487. 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1488. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e,
  1489. 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e,
  1490. 0x67, 0x12, 0x38, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x09,
  1491. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1492. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75,
  1493. 0x65, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x0c, 0x6f,
  1494. 0x70, 0x74, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  1495. 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1496. 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6f, 0x70,
  1497. 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x70, 0x74,
  1498. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b,
  1499. 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1500. 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6f, 0x70,
  1501. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x36, 0x0a, 0x0a, 0x6f, 0x70,
  1502. 0x74, 0x5f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
  1503. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1504. 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x75,
  1505. 0x63, 0x74, 0x12, 0x35, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x1a,
  1506. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1507. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1508. 0x52, 0x07, 0x6f, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x09, 0x6f, 0x70, 0x74,
  1509. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67,
  1510. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56,
  1511. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x35,
  1512. 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0e,
  1513. 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1514. 0x75, 0x66, 0x2e, 0x4e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x6f, 0x70,
  1515. 0x74, 0x4e, 0x75, 0x6c, 0x6c, 0x12, 0x33, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6d, 0x70,
  1516. 0x74, 0x79, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1517. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1518. 0x52, 0x08, 0x6f, 0x70, 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x2d, 0x0a, 0x07, 0x6f, 0x70,
  1519. 0x74, 0x5f, 0x61, 0x6e, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f,
  1520. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e,
  1521. 0x79, 0x52, 0x06, 0x6f, 0x70, 0x74, 0x41, 0x6e, 0x79, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x70, 0x74,
  1522. 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b,
  1523. 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1524. 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0c, 0x6f, 0x70,
  1525. 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x6d, 0x61, 0x73, 0x6b, 0x2a, 0x21, 0x0a, 0x04, 0x45, 0x6e,
  1526. 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x4f, 0x4e, 0x45, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x54,
  1527. 0x57, 0x4f, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x45, 0x4e, 0x10, 0x0a, 0x3a, 0x31, 0x0a,
  1528. 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x12, 0x0f, 0x2e,
  1529. 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15,
  1530. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74, 0x42, 0x6f, 0x6f, 0x6c,
  1531. 0x3a, 0x35, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1532. 0x6e, 0x67, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1533. 0x6f, 0x6e, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x78,
  1534. 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x3a, 0x3c, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x65,
  1535. 0x78, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78,
  1536. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09,
  1537. 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78,
  1538. 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x42, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74,
  1539. 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78,
  1540. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b,
  1541. 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x6f, 0x70, 0x74,
  1542. 0x45, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x3a, 0x37, 0x0a, 0x0f, 0x72, 0x70, 0x74,
  1543. 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x0f, 0x2e, 0x70,
  1544. 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20,
  1545. 0x03, 0x28, 0x07, 0x52, 0x0d, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64,
  1546. 0x33, 0x32, 0x3a, 0x3c, 0x0a, 0x0c, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x6e,
  1547. 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1548. 0x6f, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1549. 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d,
  1550. 0x3a, 0x42, 0x0a, 0x0e, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  1551. 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1552. 0x6f, 0x6e, 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1553. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x4e, 0x65,
  1554. 0x73, 0x74, 0x65, 0x64, 0x3a, 0x61, 0x0a, 0x15, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f,
  1555. 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x2e,
  1556. 0x70, 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x32,
  1557. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x46, 0x61, 0x6b, 0x65, 0x4d,
  1558. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1559. 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78,
  1560. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x37, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75,
  1561. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f,
  1562. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x32, 0x2f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e,
  1563. 0x67, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x62, 0x32,
  1564. }
  1565. var (
  1566. xxx_File_pb2_test_proto_rawDesc_once sync.Once
  1567. xxx_File_pb2_test_proto_rawDesc_data = xxx_File_pb2_test_proto_rawDesc
  1568. )
  1569. func xxx_File_pb2_test_proto_rawDescGZIP() []byte {
  1570. xxx_File_pb2_test_proto_rawDesc_once.Do(func() {
  1571. xxx_File_pb2_test_proto_rawDesc_data = protoimpl.X.CompressGZIP(xxx_File_pb2_test_proto_rawDesc_data)
  1572. })
  1573. return xxx_File_pb2_test_proto_rawDesc_data
  1574. }
  1575. var xxx_File_pb2_test_proto_enumTypes = make([]protoreflect.EnumType, 2)
  1576. var xxx_File_pb2_test_proto_messageTypes = make([]protoimpl.MessageType, 20)
  1577. var xxx_File_pb2_test_proto_goTypes = []interface{}{
  1578. (Enum)(0), // 0: pb2.Enum
  1579. (Enums_NestedEnum)(0), // 1: pb2.Enums.NestedEnum
  1580. (*Scalars)(nil), // 2: pb2.Scalars
  1581. (*Enums)(nil), // 3: pb2.Enums
  1582. (*Repeats)(nil), // 4: pb2.Repeats
  1583. (*Nested)(nil), // 5: pb2.Nested
  1584. (*Nests)(nil), // 6: pb2.Nests
  1585. (*Requireds)(nil), // 7: pb2.Requireds
  1586. (*PartialRequired)(nil), // 8: pb2.PartialRequired
  1587. (*NestedWithRequired)(nil), // 9: pb2.NestedWithRequired
  1588. (*IndirectRequired)(nil), // 10: pb2.IndirectRequired
  1589. (*Extensions)(nil), // 11: pb2.Extensions
  1590. (*ExtensionsContainer)(nil), // 12: pb2.ExtensionsContainer
  1591. (*MessageSet)(nil), // 13: pb2.MessageSet
  1592. (*MessageSetExtension)(nil), // 14: pb2.MessageSetExtension
  1593. (*FakeMessageSet)(nil), // 15: pb2.FakeMessageSet
  1594. (*FakeMessageSetExtension)(nil), // 16: pb2.FakeMessageSetExtension
  1595. (*KnownTypes)(nil), // 17: pb2.KnownTypes
  1596. (*Nests_OptGroup)(nil), // 18: pb2.Nests.OptGroup
  1597. (*Nests_RptGroup)(nil), // 19: pb2.Nests.RptGroup
  1598. (*Nests_OptGroup_OptNestedGroup)(nil), // 20: pb2.Nests.OptGroup.OptNestedGroup
  1599. nil, // 21: pb2.IndirectRequired.StrToNestedEntry
  1600. (*known.BoolValue)(nil), // 22: google.protobuf.BoolValue
  1601. (*known.Int32Value)(nil), // 23: google.protobuf.Int32Value
  1602. (*known.Int64Value)(nil), // 24: google.protobuf.Int64Value
  1603. (*known.UInt32Value)(nil), // 25: google.protobuf.UInt32Value
  1604. (*known.UInt64Value)(nil), // 26: google.protobuf.UInt64Value
  1605. (*known.FloatValue)(nil), // 27: google.protobuf.FloatValue
  1606. (*known.DoubleValue)(nil), // 28: google.protobuf.DoubleValue
  1607. (*known.StringValue)(nil), // 29: google.protobuf.StringValue
  1608. (*known.BytesValue)(nil), // 30: google.protobuf.BytesValue
  1609. (*known.Duration)(nil), // 31: google.protobuf.Duration
  1610. (*known.Timestamp)(nil), // 32: google.protobuf.Timestamp
  1611. (*known.Struct)(nil), // 33: google.protobuf.Struct
  1612. (*known.ListValue)(nil), // 34: google.protobuf.ListValue
  1613. (*known.Value)(nil), // 35: google.protobuf.Value
  1614. (known.NullValue)(0), // 36: google.protobuf.NullValue
  1615. (*known.Empty)(nil), // 37: google.protobuf.Empty
  1616. (*known.Any)(nil), // 38: google.protobuf.Any
  1617. (*known.FieldMask)(nil), // 39: google.protobuf.FieldMask
  1618. }
  1619. var xxx_File_pb2_test_proto_depIdxs = []int32{
  1620. 11, // pb2.opt_ext_bool:extendee -> pb2.Extensions
  1621. 11, // pb2.opt_ext_string:extendee -> pb2.Extensions
  1622. 11, // pb2.opt_ext_enum:extendee -> pb2.Extensions
  1623. 11, // pb2.opt_ext_nested:extendee -> pb2.Extensions
  1624. 11, // pb2.rpt_ext_fixed32:extendee -> pb2.Extensions
  1625. 11, // pb2.rpt_ext_enum:extendee -> pb2.Extensions
  1626. 11, // pb2.rpt_ext_nested:extendee -> pb2.Extensions
  1627. 13, // pb2.message_set_extension:extendee -> pb2.MessageSet
  1628. 11, // pb2.ExtensionsContainer.opt_ext_bool:extendee -> pb2.Extensions
  1629. 11, // pb2.ExtensionsContainer.opt_ext_string:extendee -> pb2.Extensions
  1630. 11, // pb2.ExtensionsContainer.opt_ext_enum:extendee -> pb2.Extensions
  1631. 11, // pb2.ExtensionsContainer.opt_ext_nested:extendee -> pb2.Extensions
  1632. 11, // pb2.ExtensionsContainer.rpt_ext_string:extendee -> pb2.Extensions
  1633. 11, // pb2.ExtensionsContainer.rpt_ext_enum:extendee -> pb2.Extensions
  1634. 11, // pb2.ExtensionsContainer.rpt_ext_nested:extendee -> pb2.Extensions
  1635. 13, // pb2.MessageSetExtension.message_set_extension:extendee -> pb2.MessageSet
  1636. 13, // pb2.MessageSetExtension.not_message_set_extension:extendee -> pb2.MessageSet
  1637. 13, // pb2.MessageSetExtension.ext_nested:extendee -> pb2.MessageSet
  1638. 15, // pb2.FakeMessageSetExtension.message_set_extension:extendee -> pb2.FakeMessageSet
  1639. 0, // pb2.Enums.opt_enum:type_name -> pb2.Enum
  1640. 0, // pb2.Enums.rpt_enum:type_name -> pb2.Enum
  1641. 1, // pb2.Enums.opt_nested_enum:type_name -> pb2.Enums.NestedEnum
  1642. 1, // pb2.Enums.rpt_nested_enum:type_name -> pb2.Enums.NestedEnum
  1643. 5, // pb2.Nested.opt_nested:type_name -> pb2.Nested
  1644. 5, // pb2.Nests.opt_nested:type_name -> pb2.Nested
  1645. 18, // pb2.Nests.optgroup:type_name -> pb2.Nests.OptGroup
  1646. 5, // pb2.Nests.rpt_nested:type_name -> pb2.Nested
  1647. 19, // pb2.Nests.rptgroup:type_name -> pb2.Nests.RptGroup
  1648. 0, // pb2.Requireds.req_enum:type_name -> pb2.Enum
  1649. 5, // pb2.Requireds.req_nested:type_name -> pb2.Nested
  1650. 9, // pb2.IndirectRequired.opt_nested:type_name -> pb2.NestedWithRequired
  1651. 9, // pb2.IndirectRequired.rpt_nested:type_name -> pb2.NestedWithRequired
  1652. 21, // pb2.IndirectRequired.str_to_nested:type_name -> pb2.IndirectRequired.StrToNestedEntry
  1653. 9, // pb2.IndirectRequired.oneof_nested:type_name -> pb2.NestedWithRequired
  1654. 22, // pb2.KnownTypes.opt_bool:type_name -> google.protobuf.BoolValue
  1655. 23, // pb2.KnownTypes.opt_int32:type_name -> google.protobuf.Int32Value
  1656. 24, // pb2.KnownTypes.opt_int64:type_name -> google.protobuf.Int64Value
  1657. 25, // pb2.KnownTypes.opt_uint32:type_name -> google.protobuf.UInt32Value
  1658. 26, // pb2.KnownTypes.opt_uint64:type_name -> google.protobuf.UInt64Value
  1659. 27, // pb2.KnownTypes.opt_float:type_name -> google.protobuf.FloatValue
  1660. 28, // pb2.KnownTypes.opt_double:type_name -> google.protobuf.DoubleValue
  1661. 29, // pb2.KnownTypes.opt_string:type_name -> google.protobuf.StringValue
  1662. 30, // pb2.KnownTypes.opt_bytes:type_name -> google.protobuf.BytesValue
  1663. 31, // pb2.KnownTypes.opt_duration:type_name -> google.protobuf.Duration
  1664. 32, // pb2.KnownTypes.opt_timestamp:type_name -> google.protobuf.Timestamp
  1665. 33, // pb2.KnownTypes.opt_struct:type_name -> google.protobuf.Struct
  1666. 34, // pb2.KnownTypes.opt_list:type_name -> google.protobuf.ListValue
  1667. 35, // pb2.KnownTypes.opt_value:type_name -> google.protobuf.Value
  1668. 36, // pb2.KnownTypes.opt_null:type_name -> google.protobuf.NullValue
  1669. 37, // pb2.KnownTypes.opt_empty:type_name -> google.protobuf.Empty
  1670. 38, // pb2.KnownTypes.opt_any:type_name -> google.protobuf.Any
  1671. 39, // pb2.KnownTypes.opt_fieldmask:type_name -> google.protobuf.FieldMask
  1672. 5, // pb2.Nests.OptGroup.opt_nested:type_name -> pb2.Nested
  1673. 20, // pb2.Nests.OptGroup.optnestedgroup:type_name -> pb2.Nests.OptGroup.OptNestedGroup
  1674. 9, // pb2.IndirectRequired.StrToNestedEntry.value:type_name -> pb2.NestedWithRequired
  1675. 0, // pb2.opt_ext_enum:type_name -> pb2.Enum
  1676. 5, // pb2.opt_ext_nested:type_name -> pb2.Nested
  1677. 0, // pb2.rpt_ext_enum:type_name -> pb2.Enum
  1678. 5, // pb2.rpt_ext_nested:type_name -> pb2.Nested
  1679. 16, // pb2.message_set_extension:type_name -> pb2.FakeMessageSetExtension
  1680. 0, // pb2.ExtensionsContainer.opt_ext_enum:type_name -> pb2.Enum
  1681. 5, // pb2.ExtensionsContainer.opt_ext_nested:type_name -> pb2.Nested
  1682. 0, // pb2.ExtensionsContainer.rpt_ext_enum:type_name -> pb2.Enum
  1683. 5, // pb2.ExtensionsContainer.rpt_ext_nested:type_name -> pb2.Nested
  1684. 14, // pb2.MessageSetExtension.message_set_extension:type_name -> pb2.MessageSetExtension
  1685. 14, // pb2.MessageSetExtension.not_message_set_extension:type_name -> pb2.MessageSetExtension
  1686. 5, // pb2.MessageSetExtension.ext_nested:type_name -> pb2.Nested
  1687. 16, // pb2.FakeMessageSetExtension.message_set_extension:type_name -> pb2.FakeMessageSetExtension
  1688. }
  1689. func init() { xxx_File_pb2_test_proto_init() }
  1690. func xxx_File_pb2_test_proto_init() {
  1691. if File_pb2_test_proto != nil {
  1692. return
  1693. }
  1694. extensionTypes := make([]protoreflect.ExtensionType, 19)
  1695. File_pb2_test_proto = protoimpl.FileBuilder{
  1696. RawDescriptor: xxx_File_pb2_test_proto_rawDesc,
  1697. GoTypes: xxx_File_pb2_test_proto_goTypes,
  1698. DependencyIndexes: xxx_File_pb2_test_proto_depIdxs,
  1699. LegacyExtensions: xxx_File_pb2_test_proto_extDescs,
  1700. EnumOutputTypes: xxx_File_pb2_test_proto_enumTypes,
  1701. MessageOutputTypes: xxx_File_pb2_test_proto_messageTypes,
  1702. ExtensionOutputTypes: extensionTypes,
  1703. FilesRegistry: protoregistry.GlobalFiles,
  1704. TypesRegistry: protoregistry.GlobalTypes,
  1705. }.Init()
  1706. xxx_File_pb2_test_proto_rawDesc = nil
  1707. xxx_File_pb2_test_proto_goTypes = nil
  1708. xxx_File_pb2_test_proto_depIdxs = nil
  1709. }