test.pb.go 88 KB

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