test.pb.go 87 KB

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