partner.pb.go 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: partner.proto
  6. package partner
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. type GetRecommendPartnerDBRequest struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 类型
  29. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  30. IdentifyIds []string `protobuf:"bytes,3,rep,name=identifyIds,proto3" json:"identifyIds"` // 匹配过的identifyID
  31. }
  32. func (x *GetRecommendPartnerDBRequest) Reset() {
  33. *x = GetRecommendPartnerDBRequest{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_partner_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *GetRecommendPartnerDBRequest) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*GetRecommendPartnerDBRequest) ProtoMessage() {}
  44. func (x *GetRecommendPartnerDBRequest) ProtoReflect() protoreflect.Message {
  45. mi := &file_partner_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use GetRecommendPartnerDBRequest.ProtoReflect.Descriptor instead.
  56. func (*GetRecommendPartnerDBRequest) Descriptor() ([]byte, []int) {
  57. return file_partner_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *GetRecommendPartnerDBRequest) GetType() string {
  60. if x != nil {
  61. return x.Type
  62. }
  63. return ""
  64. }
  65. func (x *GetRecommendPartnerDBRequest) GetSex() int64 {
  66. if x != nil {
  67. return x.Sex
  68. }
  69. return 0
  70. }
  71. func (x *GetRecommendPartnerDBRequest) GetIdentifyIds() []string {
  72. if x != nil {
  73. return x.IdentifyIds
  74. }
  75. return nil
  76. }
  77. type FindExamineRecordListRequest struct {
  78. state protoimpl.MessageState
  79. sizeCache protoimpl.SizeCache
  80. unknownFields protoimpl.UnknownFields
  81. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  82. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  83. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"` // 审核状态
  84. Pid int64 `protobuf:"varint,4,opt,name=pid,proto3" json:"pid"` // 陪伴员的ID(number)
  85. }
  86. func (x *FindExamineRecordListRequest) Reset() {
  87. *x = FindExamineRecordListRequest{}
  88. if protoimpl.UnsafeEnabled {
  89. mi := &file_partner_proto_msgTypes[1]
  90. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  91. ms.StoreMessageInfo(mi)
  92. }
  93. }
  94. func (x *FindExamineRecordListRequest) String() string {
  95. return protoimpl.X.MessageStringOf(x)
  96. }
  97. func (*FindExamineRecordListRequest) ProtoMessage() {}
  98. func (x *FindExamineRecordListRequest) ProtoReflect() protoreflect.Message {
  99. mi := &file_partner_proto_msgTypes[1]
  100. if protoimpl.UnsafeEnabled && x != nil {
  101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  102. if ms.LoadMessageInfo() == nil {
  103. ms.StoreMessageInfo(mi)
  104. }
  105. return ms
  106. }
  107. return mi.MessageOf(x)
  108. }
  109. // Deprecated: Use FindExamineRecordListRequest.ProtoReflect.Descriptor instead.
  110. func (*FindExamineRecordListRequest) Descriptor() ([]byte, []int) {
  111. return file_partner_proto_rawDescGZIP(), []int{1}
  112. }
  113. func (x *FindExamineRecordListRequest) GetNextId() int64 {
  114. if x != nil {
  115. return x.NextId
  116. }
  117. return 0
  118. }
  119. func (x *FindExamineRecordListRequest) GetOffset() int64 {
  120. if x != nil {
  121. return x.Offset
  122. }
  123. return 0
  124. }
  125. func (x *FindExamineRecordListRequest) GetStatus() string {
  126. if x != nil {
  127. return x.Status
  128. }
  129. return ""
  130. }
  131. func (x *FindExamineRecordListRequest) GetPid() int64 {
  132. if x != nil {
  133. return x.Pid
  134. }
  135. return 0
  136. }
  137. type FindExamineRecordListReply struct {
  138. state protoimpl.MessageState
  139. sizeCache protoimpl.SizeCache
  140. unknownFields protoimpl.UnknownFields
  141. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  142. List []*ExamineRecordInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  143. }
  144. func (x *FindExamineRecordListReply) Reset() {
  145. *x = FindExamineRecordListReply{}
  146. if protoimpl.UnsafeEnabled {
  147. mi := &file_partner_proto_msgTypes[2]
  148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  149. ms.StoreMessageInfo(mi)
  150. }
  151. }
  152. func (x *FindExamineRecordListReply) String() string {
  153. return protoimpl.X.MessageStringOf(x)
  154. }
  155. func (*FindExamineRecordListReply) ProtoMessage() {}
  156. func (x *FindExamineRecordListReply) ProtoReflect() protoreflect.Message {
  157. mi := &file_partner_proto_msgTypes[2]
  158. if protoimpl.UnsafeEnabled && x != nil {
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. if ms.LoadMessageInfo() == nil {
  161. ms.StoreMessageInfo(mi)
  162. }
  163. return ms
  164. }
  165. return mi.MessageOf(x)
  166. }
  167. // Deprecated: Use FindExamineRecordListReply.ProtoReflect.Descriptor instead.
  168. func (*FindExamineRecordListReply) Descriptor() ([]byte, []int) {
  169. return file_partner_proto_rawDescGZIP(), []int{2}
  170. }
  171. func (x *FindExamineRecordListReply) GetNextId() int64 {
  172. if x != nil {
  173. return x.NextId
  174. }
  175. return 0
  176. }
  177. func (x *FindExamineRecordListReply) GetList() []*ExamineRecordInfo {
  178. if x != nil {
  179. return x.List
  180. }
  181. return nil
  182. }
  183. type ExamineRecordInfo struct {
  184. state protoimpl.MessageState
  185. sizeCache protoimpl.SizeCache
  186. unknownFields protoimpl.UnknownFields
  187. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  188. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  189. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  190. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  191. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  192. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  193. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  194. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  195. ExamineStatus string `protobuf:"bytes,9,opt,name=examineStatus,proto3" json:"examineStatus"` //审核状态
  196. Id int64 `protobuf:"varint,10,opt,name=id,proto3" json:"id"` //id
  197. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  198. Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
  199. CreateTime int64 `protobuf:"varint,13,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  200. }
  201. func (x *ExamineRecordInfo) Reset() {
  202. *x = ExamineRecordInfo{}
  203. if protoimpl.UnsafeEnabled {
  204. mi := &file_partner_proto_msgTypes[3]
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. ms.StoreMessageInfo(mi)
  207. }
  208. }
  209. func (x *ExamineRecordInfo) String() string {
  210. return protoimpl.X.MessageStringOf(x)
  211. }
  212. func (*ExamineRecordInfo) ProtoMessage() {}
  213. func (x *ExamineRecordInfo) ProtoReflect() protoreflect.Message {
  214. mi := &file_partner_proto_msgTypes[3]
  215. if protoimpl.UnsafeEnabled && x != nil {
  216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  217. if ms.LoadMessageInfo() == nil {
  218. ms.StoreMessageInfo(mi)
  219. }
  220. return ms
  221. }
  222. return mi.MessageOf(x)
  223. }
  224. // Deprecated: Use ExamineRecordInfo.ProtoReflect.Descriptor instead.
  225. func (*ExamineRecordInfo) Descriptor() ([]byte, []int) {
  226. return file_partner_proto_rawDescGZIP(), []int{3}
  227. }
  228. func (x *ExamineRecordInfo) GetPartnerId() string {
  229. if x != nil {
  230. return x.PartnerId
  231. }
  232. return ""
  233. }
  234. func (x *ExamineRecordInfo) GetNickname() string {
  235. if x != nil {
  236. return x.Nickname
  237. }
  238. return ""
  239. }
  240. func (x *ExamineRecordInfo) GetAvatarUrl() string {
  241. if x != nil {
  242. return x.AvatarUrl
  243. }
  244. return ""
  245. }
  246. func (x *ExamineRecordInfo) GetIntroduceVoice() string {
  247. if x != nil {
  248. return x.IntroduceVoice
  249. }
  250. return ""
  251. }
  252. func (x *ExamineRecordInfo) GetSignature() string {
  253. if x != nil {
  254. return x.Signature
  255. }
  256. return ""
  257. }
  258. func (x *ExamineRecordInfo) GetPictures() []string {
  259. if x != nil {
  260. return x.Pictures
  261. }
  262. return nil
  263. }
  264. func (x *ExamineRecordInfo) GetSex() int64 {
  265. if x != nil {
  266. return x.Sex
  267. }
  268. return 0
  269. }
  270. func (x *ExamineRecordInfo) GetPid() int64 {
  271. if x != nil {
  272. return x.Pid
  273. }
  274. return 0
  275. }
  276. func (x *ExamineRecordInfo) GetExamineStatus() string {
  277. if x != nil {
  278. return x.ExamineStatus
  279. }
  280. return ""
  281. }
  282. func (x *ExamineRecordInfo) GetId() int64 {
  283. if x != nil {
  284. return x.Id
  285. }
  286. return 0
  287. }
  288. func (x *ExamineRecordInfo) GetAge() int64 {
  289. if x != nil {
  290. return x.Age
  291. }
  292. return 0
  293. }
  294. func (x *ExamineRecordInfo) GetConstellation() string {
  295. if x != nil {
  296. return x.Constellation
  297. }
  298. return ""
  299. }
  300. func (x *ExamineRecordInfo) GetCreateTime() int64 {
  301. if x != nil {
  302. return x.CreateTime
  303. }
  304. return 0
  305. }
  306. type FindExamineListReply struct {
  307. state protoimpl.MessageState
  308. sizeCache protoimpl.SizeCache
  309. unknownFields protoimpl.UnknownFields
  310. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  311. List []*ExamineInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  312. }
  313. func (x *FindExamineListReply) Reset() {
  314. *x = FindExamineListReply{}
  315. if protoimpl.UnsafeEnabled {
  316. mi := &file_partner_proto_msgTypes[4]
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. ms.StoreMessageInfo(mi)
  319. }
  320. }
  321. func (x *FindExamineListReply) String() string {
  322. return protoimpl.X.MessageStringOf(x)
  323. }
  324. func (*FindExamineListReply) ProtoMessage() {}
  325. func (x *FindExamineListReply) ProtoReflect() protoreflect.Message {
  326. mi := &file_partner_proto_msgTypes[4]
  327. if protoimpl.UnsafeEnabled && x != nil {
  328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  329. if ms.LoadMessageInfo() == nil {
  330. ms.StoreMessageInfo(mi)
  331. }
  332. return ms
  333. }
  334. return mi.MessageOf(x)
  335. }
  336. // Deprecated: Use FindExamineListReply.ProtoReflect.Descriptor instead.
  337. func (*FindExamineListReply) Descriptor() ([]byte, []int) {
  338. return file_partner_proto_rawDescGZIP(), []int{4}
  339. }
  340. func (x *FindExamineListReply) GetNextId() string {
  341. if x != nil {
  342. return x.NextId
  343. }
  344. return ""
  345. }
  346. func (x *FindExamineListReply) GetList() []*ExamineInfo {
  347. if x != nil {
  348. return x.List
  349. }
  350. return nil
  351. }
  352. type ExamineInfo struct {
  353. state protoimpl.MessageState
  354. sizeCache protoimpl.SizeCache
  355. unknownFields protoimpl.UnknownFields
  356. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  357. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  358. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  359. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  360. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  361. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  362. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  363. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  364. Age int64 `protobuf:"varint,9,opt,name=age,proto3" json:"age"` // 年龄
  365. Constellation string `protobuf:"bytes,10,opt,name=constellation,proto3" json:"constellation"` // 星座
  366. }
  367. func (x *ExamineInfo) Reset() {
  368. *x = ExamineInfo{}
  369. if protoimpl.UnsafeEnabled {
  370. mi := &file_partner_proto_msgTypes[5]
  371. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  372. ms.StoreMessageInfo(mi)
  373. }
  374. }
  375. func (x *ExamineInfo) String() string {
  376. return protoimpl.X.MessageStringOf(x)
  377. }
  378. func (*ExamineInfo) ProtoMessage() {}
  379. func (x *ExamineInfo) ProtoReflect() protoreflect.Message {
  380. mi := &file_partner_proto_msgTypes[5]
  381. if protoimpl.UnsafeEnabled && x != nil {
  382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  383. if ms.LoadMessageInfo() == nil {
  384. ms.StoreMessageInfo(mi)
  385. }
  386. return ms
  387. }
  388. return mi.MessageOf(x)
  389. }
  390. // Deprecated: Use ExamineInfo.ProtoReflect.Descriptor instead.
  391. func (*ExamineInfo) Descriptor() ([]byte, []int) {
  392. return file_partner_proto_rawDescGZIP(), []int{5}
  393. }
  394. func (x *ExamineInfo) GetPartnerId() string {
  395. if x != nil {
  396. return x.PartnerId
  397. }
  398. return ""
  399. }
  400. func (x *ExamineInfo) GetNickname() string {
  401. if x != nil {
  402. return x.Nickname
  403. }
  404. return ""
  405. }
  406. func (x *ExamineInfo) GetAvatarUrl() string {
  407. if x != nil {
  408. return x.AvatarUrl
  409. }
  410. return ""
  411. }
  412. func (x *ExamineInfo) GetIntroduceVoice() string {
  413. if x != nil {
  414. return x.IntroduceVoice
  415. }
  416. return ""
  417. }
  418. func (x *ExamineInfo) GetSignature() string {
  419. if x != nil {
  420. return x.Signature
  421. }
  422. return ""
  423. }
  424. func (x *ExamineInfo) GetPictures() []string {
  425. if x != nil {
  426. return x.Pictures
  427. }
  428. return nil
  429. }
  430. func (x *ExamineInfo) GetSex() int64 {
  431. if x != nil {
  432. return x.Sex
  433. }
  434. return 0
  435. }
  436. func (x *ExamineInfo) GetPid() int64 {
  437. if x != nil {
  438. return x.Pid
  439. }
  440. return 0
  441. }
  442. func (x *ExamineInfo) GetAge() int64 {
  443. if x != nil {
  444. return x.Age
  445. }
  446. return 0
  447. }
  448. func (x *ExamineInfo) GetConstellation() string {
  449. if x != nil {
  450. return x.Constellation
  451. }
  452. return ""
  453. }
  454. type ExaminePartnerRequest struct {
  455. state protoimpl.MessageState
  456. sizeCache protoimpl.SizeCache
  457. unknownFields protoimpl.UnknownFields
  458. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  459. IsPass bool `protobuf:"varint,2,opt,name=isPass,proto3" json:"isPass"` // 是否审核通过
  460. }
  461. func (x *ExaminePartnerRequest) Reset() {
  462. *x = ExaminePartnerRequest{}
  463. if protoimpl.UnsafeEnabled {
  464. mi := &file_partner_proto_msgTypes[6]
  465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  466. ms.StoreMessageInfo(mi)
  467. }
  468. }
  469. func (x *ExaminePartnerRequest) String() string {
  470. return protoimpl.X.MessageStringOf(x)
  471. }
  472. func (*ExaminePartnerRequest) ProtoMessage() {}
  473. func (x *ExaminePartnerRequest) ProtoReflect() protoreflect.Message {
  474. mi := &file_partner_proto_msgTypes[6]
  475. if protoimpl.UnsafeEnabled && x != nil {
  476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  477. if ms.LoadMessageInfo() == nil {
  478. ms.StoreMessageInfo(mi)
  479. }
  480. return ms
  481. }
  482. return mi.MessageOf(x)
  483. }
  484. // Deprecated: Use ExaminePartnerRequest.ProtoReflect.Descriptor instead.
  485. func (*ExaminePartnerRequest) Descriptor() ([]byte, []int) {
  486. return file_partner_proto_rawDescGZIP(), []int{6}
  487. }
  488. func (x *ExaminePartnerRequest) GetPartnerId() string {
  489. if x != nil {
  490. return x.PartnerId
  491. }
  492. return ""
  493. }
  494. func (x *ExaminePartnerRequest) GetIsPass() bool {
  495. if x != nil {
  496. return x.IsPass
  497. }
  498. return false
  499. }
  500. type PartnerGetRoomBalanceAndTodayBalanceReply struct {
  501. state protoimpl.MessageState
  502. sizeCache protoimpl.SizeCache
  503. unknownFields protoimpl.UnknownFields
  504. TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  505. RoomProfit int64 `protobuf:"varint,2,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  506. }
  507. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) Reset() {
  508. *x = PartnerGetRoomBalanceAndTodayBalanceReply{}
  509. if protoimpl.UnsafeEnabled {
  510. mi := &file_partner_proto_msgTypes[7]
  511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  512. ms.StoreMessageInfo(mi)
  513. }
  514. }
  515. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) String() string {
  516. return protoimpl.X.MessageStringOf(x)
  517. }
  518. func (*PartnerGetRoomBalanceAndTodayBalanceReply) ProtoMessage() {}
  519. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) ProtoReflect() protoreflect.Message {
  520. mi := &file_partner_proto_msgTypes[7]
  521. if protoimpl.UnsafeEnabled && x != nil {
  522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  523. if ms.LoadMessageInfo() == nil {
  524. ms.StoreMessageInfo(mi)
  525. }
  526. return ms
  527. }
  528. return mi.MessageOf(x)
  529. }
  530. // Deprecated: Use PartnerGetRoomBalanceAndTodayBalanceReply.ProtoReflect.Descriptor instead.
  531. func (*PartnerGetRoomBalanceAndTodayBalanceReply) Descriptor() ([]byte, []int) {
  532. return file_partner_proto_rawDescGZIP(), []int{7}
  533. }
  534. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetTodayProfit() int64 {
  535. if x != nil {
  536. return x.TodayProfit
  537. }
  538. return 0
  539. }
  540. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetRoomProfit() int64 {
  541. if x != nil {
  542. return x.RoomProfit
  543. }
  544. return 0
  545. }
  546. type PartnerCollectIDsRequest struct {
  547. state protoimpl.MessageState
  548. sizeCache protoimpl.SizeCache
  549. unknownFields protoimpl.UnknownFields
  550. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  551. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  552. }
  553. func (x *PartnerCollectIDsRequest) Reset() {
  554. *x = PartnerCollectIDsRequest{}
  555. if protoimpl.UnsafeEnabled {
  556. mi := &file_partner_proto_msgTypes[8]
  557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  558. ms.StoreMessageInfo(mi)
  559. }
  560. }
  561. func (x *PartnerCollectIDsRequest) String() string {
  562. return protoimpl.X.MessageStringOf(x)
  563. }
  564. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  565. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  566. mi := &file_partner_proto_msgTypes[8]
  567. if protoimpl.UnsafeEnabled && x != nil {
  568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  569. if ms.LoadMessageInfo() == nil {
  570. ms.StoreMessageInfo(mi)
  571. }
  572. return ms
  573. }
  574. return mi.MessageOf(x)
  575. }
  576. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  577. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  578. return file_partner_proto_rawDescGZIP(), []int{8}
  579. }
  580. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  581. if x != nil {
  582. return x.ChatRecordIds
  583. }
  584. return nil
  585. }
  586. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  587. if x != nil {
  588. return x.RoomId
  589. }
  590. return 0
  591. }
  592. type PartnerCollectRequest struct {
  593. state protoimpl.MessageState
  594. sizeCache protoimpl.SizeCache
  595. unknownFields protoimpl.UnknownFields
  596. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  597. }
  598. func (x *PartnerCollectRequest) Reset() {
  599. *x = PartnerCollectRequest{}
  600. if protoimpl.UnsafeEnabled {
  601. mi := &file_partner_proto_msgTypes[9]
  602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  603. ms.StoreMessageInfo(mi)
  604. }
  605. }
  606. func (x *PartnerCollectRequest) String() string {
  607. return protoimpl.X.MessageStringOf(x)
  608. }
  609. func (*PartnerCollectRequest) ProtoMessage() {}
  610. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  611. mi := &file_partner_proto_msgTypes[9]
  612. if protoimpl.UnsafeEnabled && x != nil {
  613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  614. if ms.LoadMessageInfo() == nil {
  615. ms.StoreMessageInfo(mi)
  616. }
  617. return ms
  618. }
  619. return mi.MessageOf(x)
  620. }
  621. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  622. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  623. return file_partner_proto_rawDescGZIP(), []int{9}
  624. }
  625. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  626. if x != nil {
  627. return x.ChatRecordId
  628. }
  629. return 0
  630. }
  631. type CreateScripRequest struct {
  632. state protoimpl.MessageState
  633. sizeCache protoimpl.SizeCache
  634. unknownFields protoimpl.UnknownFields
  635. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  636. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  637. }
  638. func (x *CreateScripRequest) Reset() {
  639. *x = CreateScripRequest{}
  640. if protoimpl.UnsafeEnabled {
  641. mi := &file_partner_proto_msgTypes[10]
  642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  643. ms.StoreMessageInfo(mi)
  644. }
  645. }
  646. func (x *CreateScripRequest) String() string {
  647. return protoimpl.X.MessageStringOf(x)
  648. }
  649. func (*CreateScripRequest) ProtoMessage() {}
  650. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  651. mi := &file_partner_proto_msgTypes[10]
  652. if protoimpl.UnsafeEnabled && x != nil {
  653. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  654. if ms.LoadMessageInfo() == nil {
  655. ms.StoreMessageInfo(mi)
  656. }
  657. return ms
  658. }
  659. return mi.MessageOf(x)
  660. }
  661. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  662. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  663. return file_partner_proto_rawDescGZIP(), []int{10}
  664. }
  665. func (x *CreateScripRequest) GetText() string {
  666. if x != nil {
  667. return x.Text
  668. }
  669. return ""
  670. }
  671. func (x *CreateScripRequest) GetPictureUrl() string {
  672. if x != nil {
  673. return x.PictureUrl
  674. }
  675. return ""
  676. }
  677. type ReplyScripRequest struct {
  678. state protoimpl.MessageState
  679. sizeCache protoimpl.SizeCache
  680. unknownFields protoimpl.UnknownFields
  681. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  682. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  683. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  684. }
  685. func (x *ReplyScripRequest) Reset() {
  686. *x = ReplyScripRequest{}
  687. if protoimpl.UnsafeEnabled {
  688. mi := &file_partner_proto_msgTypes[11]
  689. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  690. ms.StoreMessageInfo(mi)
  691. }
  692. }
  693. func (x *ReplyScripRequest) String() string {
  694. return protoimpl.X.MessageStringOf(x)
  695. }
  696. func (*ReplyScripRequest) ProtoMessage() {}
  697. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  698. mi := &file_partner_proto_msgTypes[11]
  699. if protoimpl.UnsafeEnabled && x != nil {
  700. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  701. if ms.LoadMessageInfo() == nil {
  702. ms.StoreMessageInfo(mi)
  703. }
  704. return ms
  705. }
  706. return mi.MessageOf(x)
  707. }
  708. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  709. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  710. return file_partner_proto_rawDescGZIP(), []int{11}
  711. }
  712. func (x *ReplyScripRequest) GetScripId() int64 {
  713. if x != nil {
  714. return x.ScripId
  715. }
  716. return 0
  717. }
  718. func (x *ReplyScripRequest) GetMessage() *common.Message {
  719. if x != nil {
  720. return x.Message
  721. }
  722. return nil
  723. }
  724. func (x *ReplyScripRequest) GetMsgType() string {
  725. if x != nil {
  726. return x.MsgType
  727. }
  728. return ""
  729. }
  730. type PartnerWithdrawRecordListReply struct {
  731. state protoimpl.MessageState
  732. sizeCache protoimpl.SizeCache
  733. unknownFields protoimpl.UnknownFields
  734. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  735. List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  736. }
  737. func (x *PartnerWithdrawRecordListReply) Reset() {
  738. *x = PartnerWithdrawRecordListReply{}
  739. if protoimpl.UnsafeEnabled {
  740. mi := &file_partner_proto_msgTypes[12]
  741. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  742. ms.StoreMessageInfo(mi)
  743. }
  744. }
  745. func (x *PartnerWithdrawRecordListReply) String() string {
  746. return protoimpl.X.MessageStringOf(x)
  747. }
  748. func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
  749. func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
  750. mi := &file_partner_proto_msgTypes[12]
  751. if protoimpl.UnsafeEnabled && x != nil {
  752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  753. if ms.LoadMessageInfo() == nil {
  754. ms.StoreMessageInfo(mi)
  755. }
  756. return ms
  757. }
  758. return mi.MessageOf(x)
  759. }
  760. // Deprecated: Use PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
  761. func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
  762. return file_partner_proto_rawDescGZIP(), []int{12}
  763. }
  764. func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
  765. if x != nil {
  766. return x.NextId
  767. }
  768. return 0
  769. }
  770. func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
  771. if x != nil {
  772. return x.List
  773. }
  774. return nil
  775. }
  776. type WithdrawInfo struct {
  777. state protoimpl.MessageState
  778. sizeCache protoimpl.SizeCache
  779. unknownFields protoimpl.UnknownFields
  780. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
  781. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  782. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  783. Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
  784. Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
  785. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  786. SuccessTime int64 `protobuf:"varint,7,opt,name=successTime,proto3" json:"successTime"` // 成功时间
  787. }
  788. func (x *WithdrawInfo) Reset() {
  789. *x = WithdrawInfo{}
  790. if protoimpl.UnsafeEnabled {
  791. mi := &file_partner_proto_msgTypes[13]
  792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  793. ms.StoreMessageInfo(mi)
  794. }
  795. }
  796. func (x *WithdrawInfo) String() string {
  797. return protoimpl.X.MessageStringOf(x)
  798. }
  799. func (*WithdrawInfo) ProtoMessage() {}
  800. func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
  801. mi := &file_partner_proto_msgTypes[13]
  802. if protoimpl.UnsafeEnabled && x != nil {
  803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  804. if ms.LoadMessageInfo() == nil {
  805. ms.StoreMessageInfo(mi)
  806. }
  807. return ms
  808. }
  809. return mi.MessageOf(x)
  810. }
  811. // Deprecated: Use WithdrawInfo.ProtoReflect.Descriptor instead.
  812. func (*WithdrawInfo) Descriptor() ([]byte, []int) {
  813. return file_partner_proto_rawDescGZIP(), []int{13}
  814. }
  815. func (x *WithdrawInfo) GetId() int64 {
  816. if x != nil {
  817. return x.Id
  818. }
  819. return 0
  820. }
  821. func (x *WithdrawInfo) GetMoney() int64 {
  822. if x != nil {
  823. return x.Money
  824. }
  825. return 0
  826. }
  827. func (x *WithdrawInfo) GetCredit() int64 {
  828. if x != nil {
  829. return x.Credit
  830. }
  831. return 0
  832. }
  833. func (x *WithdrawInfo) GetStatus() string {
  834. if x != nil {
  835. return x.Status
  836. }
  837. return ""
  838. }
  839. func (x *WithdrawInfo) GetResult() string {
  840. if x != nil {
  841. return x.Result
  842. }
  843. return ""
  844. }
  845. func (x *WithdrawInfo) GetCreateTime() int64 {
  846. if x != nil {
  847. return x.CreateTime
  848. }
  849. return 0
  850. }
  851. func (x *WithdrawInfo) GetSuccessTime() int64 {
  852. if x != nil {
  853. return x.SuccessTime
  854. }
  855. return 0
  856. }
  857. type PartnerWithdrawTemplateListReply struct {
  858. state protoimpl.MessageState
  859. sizeCache protoimpl.SizeCache
  860. unknownFields protoimpl.UnknownFields
  861. List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  862. }
  863. func (x *PartnerWithdrawTemplateListReply) Reset() {
  864. *x = PartnerWithdrawTemplateListReply{}
  865. if protoimpl.UnsafeEnabled {
  866. mi := &file_partner_proto_msgTypes[14]
  867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  868. ms.StoreMessageInfo(mi)
  869. }
  870. }
  871. func (x *PartnerWithdrawTemplateListReply) String() string {
  872. return protoimpl.X.MessageStringOf(x)
  873. }
  874. func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
  875. func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
  876. mi := &file_partner_proto_msgTypes[14]
  877. if protoimpl.UnsafeEnabled && x != nil {
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. if ms.LoadMessageInfo() == nil {
  880. ms.StoreMessageInfo(mi)
  881. }
  882. return ms
  883. }
  884. return mi.MessageOf(x)
  885. }
  886. // Deprecated: Use PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
  887. func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
  888. return file_partner_proto_rawDescGZIP(), []int{14}
  889. }
  890. func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
  891. if x != nil {
  892. return x.List
  893. }
  894. return nil
  895. }
  896. type PartnerWithdrawTemplateInfo struct {
  897. state protoimpl.MessageState
  898. sizeCache protoimpl.SizeCache
  899. unknownFields protoimpl.UnknownFields
  900. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  901. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  902. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  903. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
  904. }
  905. func (x *PartnerWithdrawTemplateInfo) Reset() {
  906. *x = PartnerWithdrawTemplateInfo{}
  907. if protoimpl.UnsafeEnabled {
  908. mi := &file_partner_proto_msgTypes[15]
  909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  910. ms.StoreMessageInfo(mi)
  911. }
  912. }
  913. func (x *PartnerWithdrawTemplateInfo) String() string {
  914. return protoimpl.X.MessageStringOf(x)
  915. }
  916. func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
  917. func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
  918. mi := &file_partner_proto_msgTypes[15]
  919. if protoimpl.UnsafeEnabled && x != nil {
  920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  921. if ms.LoadMessageInfo() == nil {
  922. ms.StoreMessageInfo(mi)
  923. }
  924. return ms
  925. }
  926. return mi.MessageOf(x)
  927. }
  928. // Deprecated: Use PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
  929. func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
  930. return file_partner_proto_rawDescGZIP(), []int{15}
  931. }
  932. func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
  933. if x != nil {
  934. return x.Id
  935. }
  936. return 0
  937. }
  938. func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
  939. if x != nil {
  940. return x.Money
  941. }
  942. return 0
  943. }
  944. func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
  945. if x != nil {
  946. return x.Credit
  947. }
  948. return 0
  949. }
  950. func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
  951. if x != nil {
  952. return x.Title
  953. }
  954. return ""
  955. }
  956. type PartnerUpdateWorkingStatusRequest struct {
  957. state protoimpl.MessageState
  958. sizeCache protoimpl.SizeCache
  959. unknownFields protoimpl.UnknownFields
  960. WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  961. }
  962. func (x *PartnerUpdateWorkingStatusRequest) Reset() {
  963. *x = PartnerUpdateWorkingStatusRequest{}
  964. if protoimpl.UnsafeEnabled {
  965. mi := &file_partner_proto_msgTypes[16]
  966. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  967. ms.StoreMessageInfo(mi)
  968. }
  969. }
  970. func (x *PartnerUpdateWorkingStatusRequest) String() string {
  971. return protoimpl.X.MessageStringOf(x)
  972. }
  973. func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
  974. func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
  975. mi := &file_partner_proto_msgTypes[16]
  976. if protoimpl.UnsafeEnabled && x != nil {
  977. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  978. if ms.LoadMessageInfo() == nil {
  979. ms.StoreMessageInfo(mi)
  980. }
  981. return ms
  982. }
  983. return mi.MessageOf(x)
  984. }
  985. // Deprecated: Use PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
  986. func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
  987. return file_partner_proto_rawDescGZIP(), []int{16}
  988. }
  989. func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
  990. if x != nil {
  991. return x.WorkingStatus
  992. }
  993. return ""
  994. }
  995. type PartnerGetAwardRequest struct {
  996. state protoimpl.MessageState
  997. sizeCache protoimpl.SizeCache
  998. unknownFields protoimpl.UnknownFields
  999. AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
  1000. PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1001. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
  1002. }
  1003. func (x *PartnerGetAwardRequest) Reset() {
  1004. *x = PartnerGetAwardRequest{}
  1005. if protoimpl.UnsafeEnabled {
  1006. mi := &file_partner_proto_msgTypes[17]
  1007. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1008. ms.StoreMessageInfo(mi)
  1009. }
  1010. }
  1011. func (x *PartnerGetAwardRequest) String() string {
  1012. return protoimpl.X.MessageStringOf(x)
  1013. }
  1014. func (*PartnerGetAwardRequest) ProtoMessage() {}
  1015. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  1016. mi := &file_partner_proto_msgTypes[17]
  1017. if protoimpl.UnsafeEnabled && x != nil {
  1018. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1019. if ms.LoadMessageInfo() == nil {
  1020. ms.StoreMessageInfo(mi)
  1021. }
  1022. return ms
  1023. }
  1024. return mi.MessageOf(x)
  1025. }
  1026. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  1027. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  1028. return file_partner_proto_rawDescGZIP(), []int{17}
  1029. }
  1030. func (x *PartnerGetAwardRequest) GetAwardType() string {
  1031. if x != nil {
  1032. return x.AwardType
  1033. }
  1034. return ""
  1035. }
  1036. func (x *PartnerGetAwardRequest) GetPersonID() string {
  1037. if x != nil {
  1038. return x.PersonID
  1039. }
  1040. return ""
  1041. }
  1042. func (x *PartnerGetAwardRequest) GetPersonType() string {
  1043. if x != nil {
  1044. return x.PersonType
  1045. }
  1046. return ""
  1047. }
  1048. type LevelTable struct {
  1049. state protoimpl.MessageState
  1050. sizeCache protoimpl.SizeCache
  1051. unknownFields protoimpl.UnknownFields
  1052. List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1053. }
  1054. func (x *LevelTable) Reset() {
  1055. *x = LevelTable{}
  1056. if protoimpl.UnsafeEnabled {
  1057. mi := &file_partner_proto_msgTypes[18]
  1058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1059. ms.StoreMessageInfo(mi)
  1060. }
  1061. }
  1062. func (x *LevelTable) String() string {
  1063. return protoimpl.X.MessageStringOf(x)
  1064. }
  1065. func (*LevelTable) ProtoMessage() {}
  1066. func (x *LevelTable) ProtoReflect() protoreflect.Message {
  1067. mi := &file_partner_proto_msgTypes[18]
  1068. if protoimpl.UnsafeEnabled && x != nil {
  1069. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1070. if ms.LoadMessageInfo() == nil {
  1071. ms.StoreMessageInfo(mi)
  1072. }
  1073. return ms
  1074. }
  1075. return mi.MessageOf(x)
  1076. }
  1077. // Deprecated: Use LevelTable.ProtoReflect.Descriptor instead.
  1078. func (*LevelTable) Descriptor() ([]byte, []int) {
  1079. return file_partner_proto_rawDescGZIP(), []int{18}
  1080. }
  1081. func (x *LevelTable) GetList() []*LevelInfo {
  1082. if x != nil {
  1083. return x.List
  1084. }
  1085. return nil
  1086. }
  1087. type LevelInfo struct {
  1088. state protoimpl.MessageState
  1089. sizeCache protoimpl.SizeCache
  1090. unknownFields protoimpl.UnknownFields
  1091. Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
  1092. ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1093. CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1094. Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
  1095. }
  1096. func (x *LevelInfo) Reset() {
  1097. *x = LevelInfo{}
  1098. if protoimpl.UnsafeEnabled {
  1099. mi := &file_partner_proto_msgTypes[19]
  1100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1101. ms.StoreMessageInfo(mi)
  1102. }
  1103. }
  1104. func (x *LevelInfo) String() string {
  1105. return protoimpl.X.MessageStringOf(x)
  1106. }
  1107. func (*LevelInfo) ProtoMessage() {}
  1108. func (x *LevelInfo) ProtoReflect() protoreflect.Message {
  1109. mi := &file_partner_proto_msgTypes[19]
  1110. if protoimpl.UnsafeEnabled && x != nil {
  1111. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1112. if ms.LoadMessageInfo() == nil {
  1113. ms.StoreMessageInfo(mi)
  1114. }
  1115. return ms
  1116. }
  1117. return mi.MessageOf(x)
  1118. }
  1119. // Deprecated: Use LevelInfo.ProtoReflect.Descriptor instead.
  1120. func (*LevelInfo) Descriptor() ([]byte, []int) {
  1121. return file_partner_proto_rawDescGZIP(), []int{19}
  1122. }
  1123. func (x *LevelInfo) GetLevel() int64 {
  1124. if x != nil {
  1125. return x.Level
  1126. }
  1127. return 0
  1128. }
  1129. func (x *LevelInfo) GetChatBenefit() int64 {
  1130. if x != nil {
  1131. return x.ChatBenefit
  1132. }
  1133. return 0
  1134. }
  1135. func (x *LevelInfo) GetCallBenefit() int64 {
  1136. if x != nil {
  1137. return x.CallBenefit
  1138. }
  1139. return 0
  1140. }
  1141. func (x *LevelInfo) GetCondition() string {
  1142. if x != nil {
  1143. return x.Condition
  1144. }
  1145. return ""
  1146. }
  1147. type AddPartnerBalanceRequest struct {
  1148. state protoimpl.MessageState
  1149. sizeCache protoimpl.SizeCache
  1150. unknownFields protoimpl.UnknownFields
  1151. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  1152. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
  1153. }
  1154. func (x *AddPartnerBalanceRequest) Reset() {
  1155. *x = AddPartnerBalanceRequest{}
  1156. if protoimpl.UnsafeEnabled {
  1157. mi := &file_partner_proto_msgTypes[20]
  1158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1159. ms.StoreMessageInfo(mi)
  1160. }
  1161. }
  1162. func (x *AddPartnerBalanceRequest) String() string {
  1163. return protoimpl.X.MessageStringOf(x)
  1164. }
  1165. func (*AddPartnerBalanceRequest) ProtoMessage() {}
  1166. func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
  1167. mi := &file_partner_proto_msgTypes[20]
  1168. if protoimpl.UnsafeEnabled && x != nil {
  1169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1170. if ms.LoadMessageInfo() == nil {
  1171. ms.StoreMessageInfo(mi)
  1172. }
  1173. return ms
  1174. }
  1175. return mi.MessageOf(x)
  1176. }
  1177. // Deprecated: Use AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
  1178. func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
  1179. return file_partner_proto_rawDescGZIP(), []int{20}
  1180. }
  1181. func (x *AddPartnerBalanceRequest) GetPartnerId() string {
  1182. if x != nil {
  1183. return x.PartnerId
  1184. }
  1185. return ""
  1186. }
  1187. func (x *AddPartnerBalanceRequest) GetBalance() int64 {
  1188. if x != nil {
  1189. return x.Balance
  1190. }
  1191. return 0
  1192. }
  1193. type PartnerInfo struct {
  1194. state protoimpl.MessageState
  1195. sizeCache protoimpl.SizeCache
  1196. unknownFields protoimpl.UnknownFields
  1197. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1198. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1199. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1200. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1201. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1202. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1203. Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
  1204. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1205. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1206. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1207. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1208. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1209. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1210. PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  1211. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1212. WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1213. RegisterStatus string `protobuf:"bytes,17,opt,name=registerStatus,proto3" json:"registerStatus"` // 审核状态
  1214. }
  1215. func (x *PartnerInfo) Reset() {
  1216. *x = PartnerInfo{}
  1217. if protoimpl.UnsafeEnabled {
  1218. mi := &file_partner_proto_msgTypes[21]
  1219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1220. ms.StoreMessageInfo(mi)
  1221. }
  1222. }
  1223. func (x *PartnerInfo) String() string {
  1224. return protoimpl.X.MessageStringOf(x)
  1225. }
  1226. func (*PartnerInfo) ProtoMessage() {}
  1227. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  1228. mi := &file_partner_proto_msgTypes[21]
  1229. if protoimpl.UnsafeEnabled && x != nil {
  1230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1231. if ms.LoadMessageInfo() == nil {
  1232. ms.StoreMessageInfo(mi)
  1233. }
  1234. return ms
  1235. }
  1236. return mi.MessageOf(x)
  1237. }
  1238. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  1239. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  1240. return file_partner_proto_rawDescGZIP(), []int{21}
  1241. }
  1242. func (x *PartnerInfo) GetId() string {
  1243. if x != nil {
  1244. return x.Id
  1245. }
  1246. return ""
  1247. }
  1248. func (x *PartnerInfo) GetNickname() string {
  1249. if x != nil {
  1250. return x.Nickname
  1251. }
  1252. return ""
  1253. }
  1254. func (x *PartnerInfo) GetAvatarUrl() string {
  1255. if x != nil {
  1256. return x.AvatarUrl
  1257. }
  1258. return ""
  1259. }
  1260. func (x *PartnerInfo) GetAge() int64 {
  1261. if x != nil {
  1262. return x.Age
  1263. }
  1264. return 0
  1265. }
  1266. func (x *PartnerInfo) GetSex() int64 {
  1267. if x != nil {
  1268. return x.Sex
  1269. }
  1270. return 0
  1271. }
  1272. func (x *PartnerInfo) GetConstellation() string {
  1273. if x != nil {
  1274. return x.Constellation
  1275. }
  1276. return ""
  1277. }
  1278. func (x *PartnerInfo) GetLevel() int64 {
  1279. if x != nil {
  1280. return x.Level
  1281. }
  1282. return 0
  1283. }
  1284. func (x *PartnerInfo) GetTagList() []int64 {
  1285. if x != nil {
  1286. return x.TagList
  1287. }
  1288. return nil
  1289. }
  1290. func (x *PartnerInfo) GetSignature() string {
  1291. if x != nil {
  1292. return x.Signature
  1293. }
  1294. return ""
  1295. }
  1296. func (x *PartnerInfo) GetIntroduceVoice() string {
  1297. if x != nil {
  1298. return x.IntroduceVoice
  1299. }
  1300. return ""
  1301. }
  1302. func (x *PartnerInfo) GetProvince() string {
  1303. if x != nil {
  1304. return x.Province
  1305. }
  1306. return ""
  1307. }
  1308. func (x *PartnerInfo) GetCity() string {
  1309. if x != nil {
  1310. return x.City
  1311. }
  1312. return ""
  1313. }
  1314. func (x *PartnerInfo) GetArea() string {
  1315. if x != nil {
  1316. return x.Area
  1317. }
  1318. return ""
  1319. }
  1320. func (x *PartnerInfo) GetPartnerId() int64 {
  1321. if x != nil {
  1322. return x.PartnerId
  1323. }
  1324. return 0
  1325. }
  1326. func (x *PartnerInfo) GetIsBlack() bool {
  1327. if x != nil {
  1328. return x.IsBlack
  1329. }
  1330. return false
  1331. }
  1332. func (x *PartnerInfo) GetWorkingStatus() string {
  1333. if x != nil {
  1334. return x.WorkingStatus
  1335. }
  1336. return ""
  1337. }
  1338. func (x *PartnerInfo) GetRegisterStatus() string {
  1339. if x != nil {
  1340. return x.RegisterStatus
  1341. }
  1342. return ""
  1343. }
  1344. type PartnerMessage struct {
  1345. state protoimpl.MessageState
  1346. sizeCache protoimpl.SizeCache
  1347. unknownFields protoimpl.UnknownFields
  1348. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1349. LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
  1350. LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
  1351. TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  1352. ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  1353. }
  1354. func (x *PartnerMessage) Reset() {
  1355. *x = PartnerMessage{}
  1356. if protoimpl.UnsafeEnabled {
  1357. mi := &file_partner_proto_msgTypes[22]
  1358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1359. ms.StoreMessageInfo(mi)
  1360. }
  1361. }
  1362. func (x *PartnerMessage) String() string {
  1363. return protoimpl.X.MessageStringOf(x)
  1364. }
  1365. func (*PartnerMessage) ProtoMessage() {}
  1366. func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
  1367. mi := &file_partner_proto_msgTypes[22]
  1368. if protoimpl.UnsafeEnabled && x != nil {
  1369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1370. if ms.LoadMessageInfo() == nil {
  1371. ms.StoreMessageInfo(mi)
  1372. }
  1373. return ms
  1374. }
  1375. return mi.MessageOf(x)
  1376. }
  1377. // Deprecated: Use PartnerMessage.ProtoReflect.Descriptor instead.
  1378. func (*PartnerMessage) Descriptor() ([]byte, []int) {
  1379. return file_partner_proto_rawDescGZIP(), []int{22}
  1380. }
  1381. func (x *PartnerMessage) GetId() string {
  1382. if x != nil {
  1383. return x.Id
  1384. }
  1385. return ""
  1386. }
  1387. func (x *PartnerMessage) GetLookNum() int64 {
  1388. if x != nil {
  1389. return x.LookNum
  1390. }
  1391. return 0
  1392. }
  1393. func (x *PartnerMessage) GetLookUnreadNum() int64 {
  1394. if x != nil {
  1395. return x.LookUnreadNum
  1396. }
  1397. return 0
  1398. }
  1399. func (x *PartnerMessage) GetTodayReceptionNum() int64 {
  1400. if x != nil {
  1401. return x.TodayReceptionNum
  1402. }
  1403. return 0
  1404. }
  1405. func (x *PartnerMessage) GetReversionRate() string {
  1406. if x != nil {
  1407. return x.ReversionRate
  1408. }
  1409. return ""
  1410. }
  1411. type PartnerBalance struct {
  1412. state protoimpl.MessageState
  1413. sizeCache protoimpl.SizeCache
  1414. unknownFields protoimpl.UnknownFields
  1415. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1416. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
  1417. TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  1418. Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
  1419. ChatBenefit int64 `protobuf:"varint,5,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1420. CallBenefit int64 `protobuf:"varint,6,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1421. UpLevelCondition string `protobuf:"bytes,7,opt,name=upLevelCondition,proto3" json:"upLevelCondition"` // 升级条件
  1422. UpLevelBenefit int64 `protobuf:"varint,8,opt,name=upLevelBenefit,proto3" json:"upLevelBenefit"` // 升级需要的收益
  1423. CumulativeIncome int64 `protobuf:"varint,9,opt,name=cumulativeIncome,proto3" json:"cumulativeIncome"` // 累计收益
  1424. }
  1425. func (x *PartnerBalance) Reset() {
  1426. *x = PartnerBalance{}
  1427. if protoimpl.UnsafeEnabled {
  1428. mi := &file_partner_proto_msgTypes[23]
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. ms.StoreMessageInfo(mi)
  1431. }
  1432. }
  1433. func (x *PartnerBalance) String() string {
  1434. return protoimpl.X.MessageStringOf(x)
  1435. }
  1436. func (*PartnerBalance) ProtoMessage() {}
  1437. func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
  1438. mi := &file_partner_proto_msgTypes[23]
  1439. if protoimpl.UnsafeEnabled && x != nil {
  1440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1441. if ms.LoadMessageInfo() == nil {
  1442. ms.StoreMessageInfo(mi)
  1443. }
  1444. return ms
  1445. }
  1446. return mi.MessageOf(x)
  1447. }
  1448. // Deprecated: Use PartnerBalance.ProtoReflect.Descriptor instead.
  1449. func (*PartnerBalance) Descriptor() ([]byte, []int) {
  1450. return file_partner_proto_rawDescGZIP(), []int{23}
  1451. }
  1452. func (x *PartnerBalance) GetId() string {
  1453. if x != nil {
  1454. return x.Id
  1455. }
  1456. return ""
  1457. }
  1458. func (x *PartnerBalance) GetBalance() int64 {
  1459. if x != nil {
  1460. return x.Balance
  1461. }
  1462. return 0
  1463. }
  1464. func (x *PartnerBalance) GetTodayProfit() int64 {
  1465. if x != nil {
  1466. return x.TodayProfit
  1467. }
  1468. return 0
  1469. }
  1470. func (x *PartnerBalance) GetLevel() int64 {
  1471. if x != nil {
  1472. return x.Level
  1473. }
  1474. return 0
  1475. }
  1476. func (x *PartnerBalance) GetChatBenefit() int64 {
  1477. if x != nil {
  1478. return x.ChatBenefit
  1479. }
  1480. return 0
  1481. }
  1482. func (x *PartnerBalance) GetCallBenefit() int64 {
  1483. if x != nil {
  1484. return x.CallBenefit
  1485. }
  1486. return 0
  1487. }
  1488. func (x *PartnerBalance) GetUpLevelCondition() string {
  1489. if x != nil {
  1490. return x.UpLevelCondition
  1491. }
  1492. return ""
  1493. }
  1494. func (x *PartnerBalance) GetUpLevelBenefit() int64 {
  1495. if x != nil {
  1496. return x.UpLevelBenefit
  1497. }
  1498. return 0
  1499. }
  1500. func (x *PartnerBalance) GetCumulativeIncome() int64 {
  1501. if x != nil {
  1502. return x.CumulativeIncome
  1503. }
  1504. return 0
  1505. }
  1506. type PartnerDBBalance struct {
  1507. state protoimpl.MessageState
  1508. sizeCache protoimpl.SizeCache
  1509. unknownFields protoimpl.UnknownFields
  1510. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1511. Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
  1512. ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1513. CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1514. }
  1515. func (x *PartnerDBBalance) Reset() {
  1516. *x = PartnerDBBalance{}
  1517. if protoimpl.UnsafeEnabled {
  1518. mi := &file_partner_proto_msgTypes[24]
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. ms.StoreMessageInfo(mi)
  1521. }
  1522. }
  1523. func (x *PartnerDBBalance) String() string {
  1524. return protoimpl.X.MessageStringOf(x)
  1525. }
  1526. func (*PartnerDBBalance) ProtoMessage() {}
  1527. func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
  1528. mi := &file_partner_proto_msgTypes[24]
  1529. if protoimpl.UnsafeEnabled && x != nil {
  1530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1531. if ms.LoadMessageInfo() == nil {
  1532. ms.StoreMessageInfo(mi)
  1533. }
  1534. return ms
  1535. }
  1536. return mi.MessageOf(x)
  1537. }
  1538. // Deprecated: Use PartnerDBBalance.ProtoReflect.Descriptor instead.
  1539. func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
  1540. return file_partner_proto_rawDescGZIP(), []int{24}
  1541. }
  1542. func (x *PartnerDBBalance) GetId() string {
  1543. if x != nil {
  1544. return x.Id
  1545. }
  1546. return ""
  1547. }
  1548. func (x *PartnerDBBalance) GetLevel() int64 {
  1549. if x != nil {
  1550. return x.Level
  1551. }
  1552. return 0
  1553. }
  1554. func (x *PartnerDBBalance) GetChatBenefit() int64 {
  1555. if x != nil {
  1556. return x.ChatBenefit
  1557. }
  1558. return 0
  1559. }
  1560. func (x *PartnerDBBalance) GetCallBenefit() int64 {
  1561. if x != nil {
  1562. return x.CallBenefit
  1563. }
  1564. return 0
  1565. }
  1566. type PartnerApplyWithdrawRequest struct {
  1567. state protoimpl.MessageState
  1568. sizeCache protoimpl.SizeCache
  1569. unknownFields protoimpl.UnknownFields
  1570. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
  1571. }
  1572. func (x *PartnerApplyWithdrawRequest) Reset() {
  1573. *x = PartnerApplyWithdrawRequest{}
  1574. if protoimpl.UnsafeEnabled {
  1575. mi := &file_partner_proto_msgTypes[25]
  1576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1577. ms.StoreMessageInfo(mi)
  1578. }
  1579. }
  1580. func (x *PartnerApplyWithdrawRequest) String() string {
  1581. return protoimpl.X.MessageStringOf(x)
  1582. }
  1583. func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
  1584. func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
  1585. mi := &file_partner_proto_msgTypes[25]
  1586. if protoimpl.UnsafeEnabled && x != nil {
  1587. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1588. if ms.LoadMessageInfo() == nil {
  1589. ms.StoreMessageInfo(mi)
  1590. }
  1591. return ms
  1592. }
  1593. return mi.MessageOf(x)
  1594. }
  1595. // Deprecated: Use PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
  1596. func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
  1597. return file_partner_proto_rawDescGZIP(), []int{25}
  1598. }
  1599. func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
  1600. if x != nil {
  1601. return x.TemplateId
  1602. }
  1603. return 0
  1604. }
  1605. var File_partner_proto protoreflect.FileDescriptor
  1606. var file_partner_proto_rawDesc = []byte{
  1607. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  1608. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  1609. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  1610. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  1611. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  1612. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  1613. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1614. 0x1a, 0x1f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  1615. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1616. 0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1617. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x66, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63,
  1618. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x52,
  1619. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
  1620. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1621. 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b,
  1622. 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  1623. 0x09, 0x52, 0x0b, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x22, 0x78,
  1624. 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63,
  1625. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  1626. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1627. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  1628. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16,
  1629. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1630. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x04, 0x20,
  1631. 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64,
  1632. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  1633. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  1634. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x32,
  1635. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61,
  1636. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69,
  1637. 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  1638. 0x73, 0x74, 0x22, 0xff, 0x02, 0x0a, 0x11, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65,
  1639. 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74,
  1640. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72,
  1641. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1642. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1643. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  1644. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  1645. 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69,
  1646. 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  1647. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e,
  1648. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67,
  1649. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  1650. 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  1651. 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  1652. 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28,
  1653. 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  1654. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65,
  1655. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02,
  1656. 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03,
  1657. 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24,
  1658. 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  1659. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  1660. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  1661. 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1662. 0x54, 0x69, 0x6d, 0x65, 0x22, 0x5c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d,
  1663. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06,
  1664. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65,
  1665. 0x78, 0x74, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03,
  1666. 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1667. 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  1668. 0x73, 0x74, 0x22, 0xa3, 0x02, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e,
  1669. 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18,
  1670. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64,
  1671. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  1672. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  1673. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1674. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e,
  1675. 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
  1676. 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69,
  1677. 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  1678. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  1679. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03,
  1680. 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03,
  1681. 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10,
  1682. 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64,
  1683. 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61,
  1684. 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74,
  1685. 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  1686. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4d, 0x0a, 0x15, 0x45, 0x78, 0x61, 0x6d,
  1687. 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1688. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  1689. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
  1690. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
  1691. 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x22, 0x6d, 0x0a, 0x29, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1692. 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1693. 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52,
  1694. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f,
  1695. 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79,
  1696. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72,
  1697. 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d,
  1698. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1699. 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  1700. 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1701. 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52,
  1702. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1703. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  1704. 0x22, 0x3b, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  1705. 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61,
  1706. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1707. 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x22, 0x48, 0x0a,
  1708. 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  1709. 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  1710. 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75,
  1711. 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63,
  1712. 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1713. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
  1714. 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73,
  1715. 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1716. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1717. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65,
  1718. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  1719. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22,
  1720. 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  1721. 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1722. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1723. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  1724. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1725. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e,
  1726. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xbe, 0x01, 0x0a, 0x0c, 0x57, 0x69, 0x74,
  1727. 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1728. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e,
  1729. 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12,
  1730. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1731. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  1732. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  1733. 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1734. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  1735. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65,
  1736. 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x75, 0x63, 0x63, 0x65,
  1737. 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x75,
  1738. 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x60, 0x0a, 0x20, 0x50, 0x61, 0x72,
  1739. 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70,
  1740. 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3c, 0x0a,
  1741. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70,
  1742. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1743. 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1744. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x71, 0x0a, 0x1b, 0x50,
  1745. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65,
  1746. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1747. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  1748. 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  1749. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1750. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c,
  1751. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x49,
  1752. 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57,
  1753. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  1754. 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  1755. 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b,
  1756. 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x72, 0x0a, 0x16, 0x50, 0x61, 0x72,
  1757. 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1758. 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65,
  1759. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70,
  1760. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20,
  1761. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  1762. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1763. 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x38, 0x0a,
  1764. 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
  1765. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1766. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66,
  1767. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x09, 0x4c, 0x65, 0x76, 0x65,
  1768. 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01,
  1769. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63,
  1770. 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1771. 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a,
  1772. 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
  1773. 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12,
  1774. 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  1775. 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52, 0x0a,
  1776. 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1777. 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  1778. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  1779. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e,
  1780. 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1781. 0x65, 0x22, 0xe1, 0x03, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,
  1782. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1783. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1784. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  1785. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1786. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61,
  1787. 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
  1788. 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
  1789. 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1790. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  1791. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07,
  1792. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74,
  1793. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61,
  1794. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  1795. 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  1796. 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  1797. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74,
  1798. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  1799. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  1800. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  1801. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61,
  1802. 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
  1803. 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01,
  1804. 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
  1805. 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
  1806. 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69,
  1807. 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1808. 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a,
  1809. 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1810. 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53,
  1811. 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb4, 0x01, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1812. 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1813. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b,
  1814. 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e,
  1815. 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  1816. 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55,
  1817. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61,
  1818. 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20,
  1819. 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74,
  1820. 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73,
  1821. 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72,
  1822. 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x22, 0xb6, 0x02, 0x0a,
  1823. 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12,
  1824. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  1825. 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1826. 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64,
  1827. 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  1828. 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
  1829. 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65,
  1830. 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74,
  1831. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65,
  1832. 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66,
  1833. 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65,
  1834. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
  1835. 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  1836. 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
  1837. 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65,
  1838. 0x66, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76,
  1839. 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x75, 0x6d,
  1840. 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x18, 0x09, 0x20,
  1841. 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49,
  1842. 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x22, 0x7c, 0x0a, 0x10, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1843. 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1844. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76,
  1845. 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  1846. 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03,
  1847. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69,
  1848. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74,
  1849. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65,
  1850. 0x66, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70,
  1851. 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65,
  1852. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
  1853. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  1854. 0x49, 0x64, 0x32, 0xc3, 0x3a, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x60,
  1855. 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1856. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1857. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  1858. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e,
  1859. 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69,
  1860. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a,
  1861. 0x12, 0x6c, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  1862. 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  1863. 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
  1864. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1865. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  1866. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1867. 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6f,
  1868. 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  1869. 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  1870. 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
  1871. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1872. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4,
  1873. 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1874. 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  1875. 0x84, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1876. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61,
  1877. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1878. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  1879. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1880. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93,
  1881. 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1882. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1883. 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  1884. 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12,
  1885. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65,
  1886. 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1887. 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  1888. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
  1889. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61,
  1890. 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65,
  1891. 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12,
  1892. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1893. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1894. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c,
  1895. 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  1896. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e,
  1897. 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x61, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1898. 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70,
  1899. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  1900. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1901. 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93,
  1902. 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1903. 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74,
  1904. 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65,
  1905. 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  1906. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  1907. 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1908. 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e,
  1909. 0x75, 0x6d, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69,
  1910. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  1911. 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1912. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  1913. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  1914. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  1915. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1916. 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  1917. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f,
  1918. 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12,
  1919. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43,
  1920. 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1921. 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  1922. 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69,
  1923. 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  1924. 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69,
  1925. 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1926. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70,
  1927. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  1928. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  1929. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1930. 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  1931. 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1932. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32,
  1933. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1934. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65,
  1935. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82,
  1936. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1937. 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a,
  1938. 0x01, 0x2a, 0x12, 0x87, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69,
  1939. 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  1940. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1941. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22,
  1942. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1943. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1944. 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  1945. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68,
  1946. 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a,
  1947. 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61,
  1948. 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1949. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52,
  1950. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1951. 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f,
  1952. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93,
  1953. 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1954. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a,
  1955. 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  1956. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1957. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  1958. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1959. 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  1960. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1961. 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1962. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63,
  1963. 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1964. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1965. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  1966. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e,
  1967. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52,
  1968. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  1969. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  1970. 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a,
  1971. 0x10, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b,
  1972. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1973. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69,
  1974. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1e,
  1975. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1976. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67,
  1977. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65,
  1978. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  1979. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1980. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1981. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  1982. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  1983. 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1984. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1985. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  1986. 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  1987. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  1988. 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f,
  1989. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  1990. 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0a, 0x52, 0x61, 0x6e,
  1991. 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1992. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a,
  1993. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  1994. 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93,
  1995. 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1996. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f,
  1997. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x78, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77,
  1998. 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  1999. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75,
  2000. 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2001. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c,
  2002. 0x69, 0x73, 0x74, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70,
  2003. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74,
  2004. 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6b,
  2005. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12,
  2006. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2007. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2008. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69,
  2009. 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  2010. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65,
  2011. 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x12, 0x50,
  2012. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72,
  2013. 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2014. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  2015. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43,
  2016. 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  2017. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2018. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  2019. 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54,
  2020. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2021. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61,
  2022. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  2023. 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  2024. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69,
  2025. 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a,
  2026. 0x12, 0x5c, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  2027. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2028. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2029. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2030. 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2031. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x60,
  2032. 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  2033. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2034. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2035. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2036. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2037. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  2038. 0x12, 0x5f, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69,
  2039. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68,
  2040. 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2041. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2042. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2043. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01,
  2044. 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  2045. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67,
  2046. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2047. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2048. 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  2049. 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82,
  2050. 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2051. 0x6e, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f,
  2052. 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74,
  2053. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61,
  2054. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2055. 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  2056. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2057. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93,
  2058. 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2059. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61,
  2060. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  2061. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2062. 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2063. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2064. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  2065. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2066. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  2067. 0x12, 0x67, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2068. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72,
  2069. 0x69, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2070. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2071. 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  2072. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2073. 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e,
  2074. 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2075. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  2076. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2077. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82,
  2078. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2079. 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73,
  2080. 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74,
  2081. 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2082. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2083. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2084. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28,
  2085. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  2086. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  2087. 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64,
  2088. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b,
  2089. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2090. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  2091. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2092. 0x70, 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70,
  2093. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2094. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01,
  2095. 0x2a, 0x12, 0x69, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53,
  2096. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2097. 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2098. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2099. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
  2100. 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73,
  2101. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13,
  2102. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42,
  2103. 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2104. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70,
  2105. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e,
  2106. 0x66, 0x6f, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  2107. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c,
  2108. 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x10, 0x50,
  2109. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2110. 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x52, 0x65,
  2111. 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2112. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  2113. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82, 0xd3, 0xe4,
  2114. 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2115. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a,
  2116. 0x12, 0x6b, 0x0a, 0x11, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74,
  2117. 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2118. 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2119. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2120. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d,
  2121. 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63,
  2122. 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a,
  2123. 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12,
  2124. 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  2125. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52,
  2126. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2127. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f,
  2128. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  2129. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  2130. 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  2131. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  2132. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c,
  2133. 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2134. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2135. 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70,
  2136. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  2137. 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x13,
  2138. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4c,
  2139. 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2140. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  2141. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  2142. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  2143. 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4,
  2144. 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2145. 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  2146. 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d,
  2147. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2148. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b,
  2149. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72,
  2150. 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  2151. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2152. 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11,
  2153. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75,
  2154. 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2155. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2156. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d,
  2157. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  2158. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2159. 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01,
  2160. 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x6f,
  2161. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2162. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2163. 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61,
  2164. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  2165. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e,
  2166. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  2167. 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01,
  2168. 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x61, 0x6c,
  2169. 0x61, 0x6e, 0x63, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2170. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2171. 0x79, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e,
  2172. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93,
  2173. 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2174. 0x2f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2175. 0x72, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61,
  2176. 0x72, 0x64, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2177. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64,
  2178. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2179. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2180. 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2181. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64,
  2182. 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55,
  2183. 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74,
  2184. 0x75, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2185. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f,
  2186. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  2187. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2188. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93,
  2189. 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2190. 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2f,
  2191. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0f, 0x46, 0x69, 0x6e,
  2192. 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  2193. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2194. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  2195. 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52,
  2196. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61,
  2197. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  2198. 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7a,
  2199. 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69,
  2200. 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72,
  2201. 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c,
  2202. 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2203. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2204. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  2205. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77,
  2206. 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1b, 0x50,
  2207. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65,
  2208. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2209. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2210. 0x74, 0x79, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2211. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  2212. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2213. 0x79, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x22, 0x23, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2214. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  2215. 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  2216. 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74,
  2217. 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2218. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  2219. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61,
  2220. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2221. 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  2222. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2223. 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  2224. 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f,
  2225. 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x9f, 0x01, 0x0a, 0x24, 0x50, 0x61, 0x72, 0x74,
  2226. 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  2227. 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  2228. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  2229. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x61, 0x70,
  2230. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2231. 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41,
  2232. 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65,
  2233. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  2234. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  2235. 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0f, 0x50, 0x61, 0x72,
  2236. 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x24, 0x2e, 0x61,
  2237. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2238. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  2239. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2240. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  2241. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2242. 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a,
  2243. 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2244. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  2245. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
  2246. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  2247. 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2248. 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2249. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2250. 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  2251. 0x12, 0x76, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2252. 0x65, 0x72, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2253. 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52,
  2254. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2255. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28,
  2256. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  2257. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78,
  2258. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0c, 0x4d, 0x61, 0x6e, 0x61,
  2259. 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2260. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67,
  2261. 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2262. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65,
  2263. 0x6e, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2264. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x3a, 0x01, 0x2a,
  2265. 0x12, 0xa1, 0x01, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  2266. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69,
  2267. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61,
  2268. 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2269. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74,
  2270. 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52,
  2271. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x34,
  2272. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x22, 0x29, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2273. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78,
  2274. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73,
  2275. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x43, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2276. 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2277. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2278. 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2279. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x48, 0x0a, 0x11, 0x46, 0x69, 0x6e,
  2280. 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18,
  2281. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2282. 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2283. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65,
  2284. 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  2285. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69,
  2286. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
  2287. 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65,
  2288. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2289. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x1a,
  2290. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72,
  2291. 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2292. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  2293. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  2294. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2295. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x1a, 0x55, 0x70, 0x64,
  2296. 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f,
  2297. 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2298. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2299. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2300. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x13,
  2301. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61,
  2302. 0x6e, 0x63, 0x65, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2303. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2304. 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  2305. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x00,
  2306. 0x12, 0x54, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61,
  2307. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74,
  2308. 0x6e, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61,
  2309. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2310. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2311. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72,
  2312. 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a,
  2313. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2314. 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2315. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e,
  2316. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5a, 0x0a, 0x15,
  2317. 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74,
  2318. 0x6e, 0x65, 0x72, 0x44, 0x42, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74,
  2319. 0x6e, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  2320. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2321. 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2322. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x2e,
  2323. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x2e, 0x69,
  2324. 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  2325. 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69,
  2326. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2327. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2328. }
  2329. var (
  2330. file_partner_proto_rawDescOnce sync.Once
  2331. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  2332. )
  2333. func file_partner_proto_rawDescGZIP() []byte {
  2334. file_partner_proto_rawDescOnce.Do(func() {
  2335. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  2336. })
  2337. return file_partner_proto_rawDescData
  2338. }
  2339. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
  2340. var file_partner_proto_goTypes = []interface{}{
  2341. (*GetRecommendPartnerDBRequest)(nil), // 0: api.partner.GetRecommendPartnerDBRequest
  2342. (*FindExamineRecordListRequest)(nil), // 1: api.partner.FindExamineRecordListRequest
  2343. (*FindExamineRecordListReply)(nil), // 2: api.partner.FindExamineRecordListReply
  2344. (*ExamineRecordInfo)(nil), // 3: api.partner.ExamineRecordInfo
  2345. (*FindExamineListReply)(nil), // 4: api.partner.FindExamineListReply
  2346. (*ExamineInfo)(nil), // 5: api.partner.ExamineInfo
  2347. (*ExaminePartnerRequest)(nil), // 6: api.partner.ExaminePartnerRequest
  2348. (*PartnerGetRoomBalanceAndTodayBalanceReply)(nil), // 7: api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2349. (*PartnerCollectIDsRequest)(nil), // 8: api.partner.PartnerCollectIDsRequest
  2350. (*PartnerCollectRequest)(nil), // 9: api.partner.PartnerCollectRequest
  2351. (*CreateScripRequest)(nil), // 10: api.partner.CreateScripRequest
  2352. (*ReplyScripRequest)(nil), // 11: api.partner.ReplyScripRequest
  2353. (*PartnerWithdrawRecordListReply)(nil), // 12: api.partner.PartnerWithdrawRecordListReply
  2354. (*WithdrawInfo)(nil), // 13: api.partner.WithdrawInfo
  2355. (*PartnerWithdrawTemplateListReply)(nil), // 14: api.partner.PartnerWithdrawTemplateListReply
  2356. (*PartnerWithdrawTemplateInfo)(nil), // 15: api.partner.PartnerWithdrawTemplateInfo
  2357. (*PartnerUpdateWorkingStatusRequest)(nil), // 16: api.partner.PartnerUpdateWorkingStatusRequest
  2358. (*PartnerGetAwardRequest)(nil), // 17: api.partner.PartnerGetAwardRequest
  2359. (*LevelTable)(nil), // 18: api.partner.LevelTable
  2360. (*LevelInfo)(nil), // 19: api.partner.LevelInfo
  2361. (*AddPartnerBalanceRequest)(nil), // 20: api.partner.AddPartnerBalanceRequest
  2362. (*PartnerInfo)(nil), // 21: api.partner.PartnerInfo
  2363. (*PartnerMessage)(nil), // 22: api.partner.PartnerMessage
  2364. (*PartnerBalance)(nil), // 23: api.partner.PartnerBalance
  2365. (*PartnerDBBalance)(nil), // 24: api.partner.PartnerDBBalance
  2366. (*PartnerApplyWithdrawRequest)(nil), // 25: api.partner.PartnerApplyWithdrawRequest
  2367. (*common.Message)(nil), // 26: api.common.Message
  2368. (*emptypb.Empty)(nil), // 27: google.protobuf.Empty
  2369. (*common.SendPhoneCodeRequest)(nil), // 28: api.common.SendPhoneCodeRequest
  2370. (*common.CheckPhoneCodeRequest)(nil), // 29: api.common.CheckPhoneCodeRequest
  2371. (*common.UpdateInformationRequest)(nil), // 30: api.common.UpdateInformationRequest
  2372. (*common.CreateChatRoomParam)(nil), // 31: api.common.CreateChatRoomParam
  2373. (*common.PersonParam)(nil), // 32: api.common.PersonParam
  2374. (*common.ListPageRequest)(nil), // 33: api.common.ListPageRequest
  2375. (*common.WxConfReq)(nil), // 34: api.common.WxConfReq
  2376. (*common.SexReq)(nil), // 35: api.common.SexReq
  2377. (*common.ListPage2Request)(nil), // 36: api.common.ListPage2Request
  2378. (*common.FindChatRecordListRequest)(nil), // 37: api.common.FindChatRecordListRequest
  2379. (*common.FindChatRoomMsgRequest)(nil), // 38: api.common.FindChatRoomMsgRequest
  2380. (*common.MemeRequest)(nil), // 39: api.common.MemeRequest
  2381. (*common.FindChatTopicRequest)(nil), // 40: api.common.FindChatTopicRequest
  2382. (*common.RandomNum)(nil), // 41: api.common.RandomNum
  2383. (*common.RandomNumAndSex)(nil), // 42: api.common.RandomNumAndSex
  2384. (*common.ReportChatRequest)(nil), // 43: api.common.ReportChatRequest
  2385. (*common.UpdateLastScripIDRequest)(nil), // 44: api.common.UpdateLastScripIDRequest
  2386. (*common.ScripIdRequest)(nil), // 45: api.common.ScripIdRequest
  2387. (*common.FindScripRequest)(nil), // 46: api.common.FindScripRequest
  2388. (*common.RoomIDRequest)(nil), // 47: api.common.RoomIDRequest
  2389. (*common.ManagerLoginRequest)(nil), // 48: api.common.ManagerLoginRequest
  2390. (*common.PersonIDParam)(nil), // 49: api.common.PersonIDParam
  2391. (*common.PersonIDList)(nil), // 50: api.common.PersonIDList
  2392. (*common.UpdateLastScripIDDBRequest)(nil), // 51: api.common.UpdateLastScripIDDBRequest
  2393. (*common.FindRecommendRequest)(nil), // 52: api.common.FindRecommendRequest
  2394. (*common.PartnerIDParam)(nil), // 53: api.common.PartnerIDParam
  2395. (*chat.RoomReply)(nil), // 54: api.chat.RoomReply
  2396. (*common.HomeInfo)(nil), // 55: api.common.HomeInfo
  2397. (*common.LookedAndLikedNum)(nil), // 56: api.common.LookedAndLikedNum
  2398. (*statistics.LookAndLikeListReply)(nil), // 57: api.statistics.LookAndLikeListReply
  2399. (*common.WxConfResponse)(nil), // 58: api.common.WxConfResponse
  2400. (*common.TagListReply)(nil), // 59: api.common.TagListReply
  2401. (*common.RecommendPersonListReply)(nil), // 60: api.common.RecommendPersonListReply
  2402. (*chat.PartnerFindRoomListReply)(nil), // 61: api.chat.PartnerFindRoomListReply
  2403. (*common.ChatRecordListReply)(nil), // 62: api.common.ChatRecordListReply
  2404. (*common.ChatRoomMsg)(nil), // 63: api.common.ChatRoomMsg
  2405. (*common.IsLike)(nil), // 64: api.common.IsLike
  2406. (*common.MemeList)(nil), // 65: api.common.MemeList
  2407. (*common.ChatTopicList)(nil), // 66: api.common.ChatTopicList
  2408. (*common.CommonTextList)(nil), // 67: api.common.CommonTextList
  2409. (*common.MemeTitleList)(nil), // 68: api.common.MemeTitleList
  2410. (*common.PartnerChatCardInfo)(nil), // 69: api.common.PartnerChatCardInfo
  2411. (*common.FindOverSevenDayAvatarReply)(nil), // 70: api.common.FindOverSevenDayAvatarReply
  2412. (*common.ScripID)(nil), // 71: api.common.ScripID
  2413. (*common.ScripReply)(nil), // 72: api.common.ScripReply
  2414. (*common.ScripInfo)(nil), // 73: api.common.ScripInfo
  2415. (*common.ChatRecordInfo)(nil), // 74: api.common.ChatRecordInfo
  2416. (*statistics.LookMessageReply)(nil), // 75: api.statistics.LookMessageReply
  2417. (*chat.FindNotReplyNumReply)(nil), // 76: api.chat.FindNotReplyNumReply
  2418. (*common.LoginToken)(nil), // 77: api.common.LoginToken
  2419. (*common.PersonMsg)(nil), // 78: api.common.PersonMsg
  2420. (*common.PersonDBReply)(nil), // 79: api.common.PersonDBReply
  2421. (*common.AddFriendMessageInfo)(nil), // 80: api.common.AddFriendMessageInfo
  2422. (*common.PersonDB)(nil), // 81: api.common.PersonDB
  2423. }
  2424. var file_partner_proto_depIdxs = []int32{
  2425. 3, // 0: api.partner.FindExamineRecordListReply.list:type_name -> api.partner.ExamineRecordInfo
  2426. 5, // 1: api.partner.FindExamineListReply.list:type_name -> api.partner.ExamineInfo
  2427. 26, // 2: api.partner.ReplyScripRequest.message:type_name -> api.common.Message
  2428. 13, // 3: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
  2429. 15, // 4: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
  2430. 19, // 5: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
  2431. 27, // 6: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  2432. 28, // 7: api.partner.Partner.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2433. 29, // 8: api.partner.Partner.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2434. 30, // 9: api.partner.Partner.UpdatePartnerInformation:input_type -> api.common.UpdateInformationRequest
  2435. 31, // 10: api.partner.Partner.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2436. 27, // 11: api.partner.Partner.GetPartnerBalance:input_type -> google.protobuf.Empty
  2437. 32, // 12: api.partner.Partner.PartnerGetHomeInfo:input_type -> api.common.PersonParam
  2438. 32, // 13: api.partner.Partner.PartnerGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2439. 33, // 14: api.partner.Partner.FindLookList:input_type -> api.common.ListPageRequest
  2440. 34, // 15: api.partner.Partner.WxConf:input_type -> api.common.WxConfReq
  2441. 35, // 16: api.partner.Partner.FindTagListBySex:input_type -> api.common.SexReq
  2442. 36, // 17: api.partner.Partner.FindOnlineList:input_type -> api.common.ListPage2Request
  2443. 33, // 18: api.partner.Partner.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2444. 33, // 19: api.partner.Partner.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2445. 37, // 20: api.partner.Partner.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2446. 38, // 21: api.partner.Partner.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2447. 32, // 22: api.partner.Partner.GetPartnerIsLike:input_type -> api.common.PersonParam
  2448. 39, // 23: api.partner.Partner.FindMemeByType:input_type -> api.common.MemeRequest
  2449. 40, // 24: api.partner.Partner.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2450. 41, // 25: api.partner.Partner.RandomMeme:input_type -> api.common.RandomNum
  2451. 42, // 26: api.partner.Partner.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2452. 27, // 27: api.partner.Partner.FindMemeTitle:input_type -> google.protobuf.Empty
  2453. 32, // 28: api.partner.Partner.PartnerGetChatCard:input_type -> api.common.PersonParam
  2454. 27, // 29: api.partner.Partner.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2455. 32, // 30: api.partner.Partner.PartnerLike:input_type -> api.common.PersonParam
  2456. 32, // 31: api.partner.Partner.PartnerUnLike:input_type -> api.common.PersonParam
  2457. 43, // 32: api.partner.Partner.Report:input_type -> api.common.ReportChatRequest
  2458. 27, // 33: api.partner.Partner.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2459. 44, // 34: api.partner.Partner.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2460. 10, // 35: api.partner.Partner.CreateScrip:input_type -> api.partner.CreateScripRequest
  2461. 45, // 36: api.partner.Partner.DeleteScrip:input_type -> api.common.ScripIdRequest
  2462. 33, // 37: api.partner.Partner.FindMyScrip:input_type -> api.common.ListPageRequest
  2463. 46, // 38: api.partner.Partner.FindOtherScrip:input_type -> api.common.FindScripRequest
  2464. 33, // 39: api.partner.Partner.FindRecommendScrip:input_type -> api.common.ListPageRequest
  2465. 45, // 40: api.partner.Partner.PersonLookScrip:input_type -> api.common.ScripIdRequest
  2466. 27, // 41: api.partner.Partner.PersonClickLookBack:input_type -> google.protobuf.Empty
  2467. 11, // 42: api.partner.Partner.PersonReplyScrip:input_type -> api.partner.ReplyScripRequest
  2468. 47, // 43: api.partner.Partner.PartnerDeleteChat:input_type -> api.common.RoomIDRequest
  2469. 8, // 44: api.partner.Partner.PartnerCollect:input_type -> api.partner.PartnerCollectIDsRequest
  2470. 9, // 45: api.partner.Partner.PartnerDeleteCollect:input_type -> api.partner.PartnerCollectRequest
  2471. 37, // 46: api.partner.Partner.FindChatCollectList:input_type -> api.common.FindChatRecordListRequest
  2472. 27, // 47: api.partner.Partner.GetPartnerMessage:input_type -> google.protobuf.Empty
  2473. 27, // 48: api.partner.Partner.GetPartnerLookNum:input_type -> google.protobuf.Empty
  2474. 33, // 49: api.partner.Partner.FindUnReplyRoomList:input_type -> api.common.ListPageRequest
  2475. 27, // 50: api.partner.Partner.GetLevelBalanceTable:input_type -> google.protobuf.Empty
  2476. 17, // 51: api.partner.Partner.PartnerGetAward:input_type -> api.partner.PartnerGetAwardRequest
  2477. 16, // 52: api.partner.Partner.PartnerUpdateWorkingStatus:input_type -> api.partner.PartnerUpdateWorkingStatusRequest
  2478. 27, // 53: api.partner.Partner.FindNotReplyNum:input_type -> google.protobuf.Empty
  2479. 25, // 54: api.partner.Partner.PartnerApplyWithdraw:input_type -> api.partner.PartnerApplyWithdrawRequest
  2480. 27, // 55: api.partner.Partner.PartnerWithdrawTemplateList:input_type -> google.protobuf.Empty
  2481. 33, // 56: api.partner.Partner.PartnerWithdrawRecordList:input_type -> api.common.ListPageRequest
  2482. 47, // 57: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:input_type -> api.common.RoomIDRequest
  2483. 30, // 58: api.partner.Partner.PartnerRegister:input_type -> api.common.UpdateInformationRequest
  2484. 36, // 59: api.partner.Partner.FindExamineList:input_type -> api.common.ListPage2Request
  2485. 6, // 60: api.partner.Partner.ExaminePartner:input_type -> api.partner.ExaminePartnerRequest
  2486. 48, // 61: api.partner.Partner.ManagerLogin:input_type -> api.common.ManagerLoginRequest
  2487. 1, // 62: api.partner.Partner.FindExamineRecordList:input_type -> api.partner.FindExamineRecordListRequest
  2488. 49, // 63: api.partner.Partner.GetPartnerDBMsg:input_type -> api.common.PersonIDParam
  2489. 50, // 64: api.partner.Partner.FindPartnerDBList:input_type -> api.common.PersonIDList
  2490. 51, // 65: api.partner.Partner.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2491. 52, // 66: api.partner.Partner.FindRecommendPartnerDBList:input_type -> api.common.FindRecommendRequest
  2492. 49, // 67: api.partner.Partner.UpdatePartnerLastLoginTime:input_type -> api.common.PersonIDParam
  2493. 53, // 68: api.partner.Partner.GetPartnerDBBalance:input_type -> api.common.PartnerIDParam
  2494. 20, // 69: api.partner.Partner.AddPartnerBalance:input_type -> api.partner.AddPartnerBalanceRequest
  2495. 53, // 70: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.common.PartnerIDParam
  2496. 0, // 71: api.partner.Partner.GetRecommendPartnerDB:input_type -> api.partner.GetRecommendPartnerDBRequest
  2497. 21, // 72: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  2498. 27, // 73: api.partner.Partner.SendPhoneCode:output_type -> google.protobuf.Empty
  2499. 27, // 74: api.partner.Partner.CheckPhoneCode:output_type -> google.protobuf.Empty
  2500. 27, // 75: api.partner.Partner.UpdatePartnerInformation:output_type -> google.protobuf.Empty
  2501. 54, // 76: api.partner.Partner.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2502. 23, // 77: api.partner.Partner.GetPartnerBalance:output_type -> api.partner.PartnerBalance
  2503. 55, // 78: api.partner.Partner.PartnerGetHomeInfo:output_type -> api.common.HomeInfo
  2504. 56, // 79: api.partner.Partner.PartnerGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2505. 57, // 80: api.partner.Partner.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2506. 58, // 81: api.partner.Partner.WxConf:output_type -> api.common.WxConfResponse
  2507. 59, // 82: api.partner.Partner.FindTagListBySex:output_type -> api.common.TagListReply
  2508. 60, // 83: api.partner.Partner.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2509. 61, // 84: api.partner.Partner.FindWithinSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2510. 61, // 85: api.partner.Partner.FindOverSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2511. 62, // 86: api.partner.Partner.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2512. 63, // 87: api.partner.Partner.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2513. 64, // 88: api.partner.Partner.GetPartnerIsLike:output_type -> api.common.IsLike
  2514. 65, // 89: api.partner.Partner.FindMemeByType:output_type -> api.common.MemeList
  2515. 66, // 90: api.partner.Partner.FindChatTopic:output_type -> api.common.ChatTopicList
  2516. 67, // 91: api.partner.Partner.RandomMeme:output_type -> api.common.CommonTextList
  2517. 67, // 92: api.partner.Partner.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2518. 68, // 93: api.partner.Partner.FindMemeTitle:output_type -> api.common.MemeTitleList
  2519. 69, // 94: api.partner.Partner.PartnerGetChatCard:output_type -> api.common.PartnerChatCardInfo
  2520. 68, // 95: api.partner.Partner.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2521. 27, // 96: api.partner.Partner.PartnerLike:output_type -> google.protobuf.Empty
  2522. 27, // 97: api.partner.Partner.PartnerUnLike:output_type -> google.protobuf.Empty
  2523. 27, // 98: api.partner.Partner.Report:output_type -> google.protobuf.Empty
  2524. 70, // 99: api.partner.Partner.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2525. 27, // 100: api.partner.Partner.UpdateLastScripID:output_type -> google.protobuf.Empty
  2526. 71, // 101: api.partner.Partner.CreateScrip:output_type -> api.common.ScripID
  2527. 27, // 102: api.partner.Partner.DeleteScrip:output_type -> google.protobuf.Empty
  2528. 72, // 103: api.partner.Partner.FindMyScrip:output_type -> api.common.ScripReply
  2529. 72, // 104: api.partner.Partner.FindOtherScrip:output_type -> api.common.ScripReply
  2530. 72, // 105: api.partner.Partner.FindRecommendScrip:output_type -> api.common.ScripReply
  2531. 27, // 106: api.partner.Partner.PersonLookScrip:output_type -> google.protobuf.Empty
  2532. 73, // 107: api.partner.Partner.PersonClickLookBack:output_type -> api.common.ScripInfo
  2533. 74, // 108: api.partner.Partner.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2534. 27, // 109: api.partner.Partner.PartnerDeleteChat:output_type -> google.protobuf.Empty
  2535. 27, // 110: api.partner.Partner.PartnerCollect:output_type -> google.protobuf.Empty
  2536. 27, // 111: api.partner.Partner.PartnerDeleteCollect:output_type -> google.protobuf.Empty
  2537. 62, // 112: api.partner.Partner.FindChatCollectList:output_type -> api.common.ChatRecordListReply
  2538. 22, // 113: api.partner.Partner.GetPartnerMessage:output_type -> api.partner.PartnerMessage
  2539. 75, // 114: api.partner.Partner.GetPartnerLookNum:output_type -> api.statistics.LookMessageReply
  2540. 61, // 115: api.partner.Partner.FindUnReplyRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2541. 18, // 116: api.partner.Partner.GetLevelBalanceTable:output_type -> api.partner.LevelTable
  2542. 27, // 117: api.partner.Partner.PartnerGetAward:output_type -> google.protobuf.Empty
  2543. 27, // 118: api.partner.Partner.PartnerUpdateWorkingStatus:output_type -> google.protobuf.Empty
  2544. 76, // 119: api.partner.Partner.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  2545. 27, // 120: api.partner.Partner.PartnerApplyWithdraw:output_type -> google.protobuf.Empty
  2546. 14, // 121: api.partner.Partner.PartnerWithdrawTemplateList:output_type -> api.partner.PartnerWithdrawTemplateListReply
  2547. 12, // 122: api.partner.Partner.PartnerWithdrawRecordList:output_type -> api.partner.PartnerWithdrawRecordListReply
  2548. 7, // 123: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:output_type -> api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2549. 27, // 124: api.partner.Partner.PartnerRegister:output_type -> google.protobuf.Empty
  2550. 4, // 125: api.partner.Partner.FindExamineList:output_type -> api.partner.FindExamineListReply
  2551. 27, // 126: api.partner.Partner.ExaminePartner:output_type -> google.protobuf.Empty
  2552. 77, // 127: api.partner.Partner.ManagerLogin:output_type -> api.common.LoginToken
  2553. 2, // 128: api.partner.Partner.FindExamineRecordList:output_type -> api.partner.FindExamineRecordListReply
  2554. 78, // 129: api.partner.Partner.GetPartnerDBMsg:output_type -> api.common.PersonMsg
  2555. 79, // 130: api.partner.Partner.FindPartnerDBList:output_type -> api.common.PersonDBReply
  2556. 27, // 131: api.partner.Partner.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  2557. 79, // 132: api.partner.Partner.FindRecommendPartnerDBList:output_type -> api.common.PersonDBReply
  2558. 27, // 133: api.partner.Partner.UpdatePartnerLastLoginTime:output_type -> google.protobuf.Empty
  2559. 24, // 134: api.partner.Partner.GetPartnerDBBalance:output_type -> api.partner.PartnerDBBalance
  2560. 27, // 135: api.partner.Partner.AddPartnerBalance:output_type -> google.protobuf.Empty
  2561. 80, // 136: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2562. 81, // 137: api.partner.Partner.GetRecommendPartnerDB:output_type -> api.common.PersonDB
  2563. 72, // [72:138] is the sub-list for method output_type
  2564. 6, // [6:72] is the sub-list for method input_type
  2565. 6, // [6:6] is the sub-list for extension type_name
  2566. 6, // [6:6] is the sub-list for extension extendee
  2567. 0, // [0:6] is the sub-list for field type_name
  2568. }
  2569. func init() { file_partner_proto_init() }
  2570. func file_partner_proto_init() {
  2571. if File_partner_proto != nil {
  2572. return
  2573. }
  2574. if !protoimpl.UnsafeEnabled {
  2575. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2576. switch v := v.(*GetRecommendPartnerDBRequest); i {
  2577. case 0:
  2578. return &v.state
  2579. case 1:
  2580. return &v.sizeCache
  2581. case 2:
  2582. return &v.unknownFields
  2583. default:
  2584. return nil
  2585. }
  2586. }
  2587. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2588. switch v := v.(*FindExamineRecordListRequest); i {
  2589. case 0:
  2590. return &v.state
  2591. case 1:
  2592. return &v.sizeCache
  2593. case 2:
  2594. return &v.unknownFields
  2595. default:
  2596. return nil
  2597. }
  2598. }
  2599. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2600. switch v := v.(*FindExamineRecordListReply); i {
  2601. case 0:
  2602. return &v.state
  2603. case 1:
  2604. return &v.sizeCache
  2605. case 2:
  2606. return &v.unknownFields
  2607. default:
  2608. return nil
  2609. }
  2610. }
  2611. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2612. switch v := v.(*ExamineRecordInfo); i {
  2613. case 0:
  2614. return &v.state
  2615. case 1:
  2616. return &v.sizeCache
  2617. case 2:
  2618. return &v.unknownFields
  2619. default:
  2620. return nil
  2621. }
  2622. }
  2623. file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2624. switch v := v.(*FindExamineListReply); i {
  2625. case 0:
  2626. return &v.state
  2627. case 1:
  2628. return &v.sizeCache
  2629. case 2:
  2630. return &v.unknownFields
  2631. default:
  2632. return nil
  2633. }
  2634. }
  2635. file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2636. switch v := v.(*ExamineInfo); i {
  2637. case 0:
  2638. return &v.state
  2639. case 1:
  2640. return &v.sizeCache
  2641. case 2:
  2642. return &v.unknownFields
  2643. default:
  2644. return nil
  2645. }
  2646. }
  2647. file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2648. switch v := v.(*ExaminePartnerRequest); i {
  2649. case 0:
  2650. return &v.state
  2651. case 1:
  2652. return &v.sizeCache
  2653. case 2:
  2654. return &v.unknownFields
  2655. default:
  2656. return nil
  2657. }
  2658. }
  2659. file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2660. switch v := v.(*PartnerGetRoomBalanceAndTodayBalanceReply); i {
  2661. case 0:
  2662. return &v.state
  2663. case 1:
  2664. return &v.sizeCache
  2665. case 2:
  2666. return &v.unknownFields
  2667. default:
  2668. return nil
  2669. }
  2670. }
  2671. file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2672. switch v := v.(*PartnerCollectIDsRequest); i {
  2673. case 0:
  2674. return &v.state
  2675. case 1:
  2676. return &v.sizeCache
  2677. case 2:
  2678. return &v.unknownFields
  2679. default:
  2680. return nil
  2681. }
  2682. }
  2683. file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2684. switch v := v.(*PartnerCollectRequest); i {
  2685. case 0:
  2686. return &v.state
  2687. case 1:
  2688. return &v.sizeCache
  2689. case 2:
  2690. return &v.unknownFields
  2691. default:
  2692. return nil
  2693. }
  2694. }
  2695. file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2696. switch v := v.(*CreateScripRequest); i {
  2697. case 0:
  2698. return &v.state
  2699. case 1:
  2700. return &v.sizeCache
  2701. case 2:
  2702. return &v.unknownFields
  2703. default:
  2704. return nil
  2705. }
  2706. }
  2707. file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2708. switch v := v.(*ReplyScripRequest); i {
  2709. case 0:
  2710. return &v.state
  2711. case 1:
  2712. return &v.sizeCache
  2713. case 2:
  2714. return &v.unknownFields
  2715. default:
  2716. return nil
  2717. }
  2718. }
  2719. file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2720. switch v := v.(*PartnerWithdrawRecordListReply); i {
  2721. case 0:
  2722. return &v.state
  2723. case 1:
  2724. return &v.sizeCache
  2725. case 2:
  2726. return &v.unknownFields
  2727. default:
  2728. return nil
  2729. }
  2730. }
  2731. file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2732. switch v := v.(*WithdrawInfo); i {
  2733. case 0:
  2734. return &v.state
  2735. case 1:
  2736. return &v.sizeCache
  2737. case 2:
  2738. return &v.unknownFields
  2739. default:
  2740. return nil
  2741. }
  2742. }
  2743. file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2744. switch v := v.(*PartnerWithdrawTemplateListReply); i {
  2745. case 0:
  2746. return &v.state
  2747. case 1:
  2748. return &v.sizeCache
  2749. case 2:
  2750. return &v.unknownFields
  2751. default:
  2752. return nil
  2753. }
  2754. }
  2755. file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2756. switch v := v.(*PartnerWithdrawTemplateInfo); i {
  2757. case 0:
  2758. return &v.state
  2759. case 1:
  2760. return &v.sizeCache
  2761. case 2:
  2762. return &v.unknownFields
  2763. default:
  2764. return nil
  2765. }
  2766. }
  2767. file_partner_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2768. switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
  2769. case 0:
  2770. return &v.state
  2771. case 1:
  2772. return &v.sizeCache
  2773. case 2:
  2774. return &v.unknownFields
  2775. default:
  2776. return nil
  2777. }
  2778. }
  2779. file_partner_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2780. switch v := v.(*PartnerGetAwardRequest); i {
  2781. case 0:
  2782. return &v.state
  2783. case 1:
  2784. return &v.sizeCache
  2785. case 2:
  2786. return &v.unknownFields
  2787. default:
  2788. return nil
  2789. }
  2790. }
  2791. file_partner_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2792. switch v := v.(*LevelTable); i {
  2793. case 0:
  2794. return &v.state
  2795. case 1:
  2796. return &v.sizeCache
  2797. case 2:
  2798. return &v.unknownFields
  2799. default:
  2800. return nil
  2801. }
  2802. }
  2803. file_partner_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2804. switch v := v.(*LevelInfo); i {
  2805. case 0:
  2806. return &v.state
  2807. case 1:
  2808. return &v.sizeCache
  2809. case 2:
  2810. return &v.unknownFields
  2811. default:
  2812. return nil
  2813. }
  2814. }
  2815. file_partner_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2816. switch v := v.(*AddPartnerBalanceRequest); i {
  2817. case 0:
  2818. return &v.state
  2819. case 1:
  2820. return &v.sizeCache
  2821. case 2:
  2822. return &v.unknownFields
  2823. default:
  2824. return nil
  2825. }
  2826. }
  2827. file_partner_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2828. switch v := v.(*PartnerInfo); i {
  2829. case 0:
  2830. return &v.state
  2831. case 1:
  2832. return &v.sizeCache
  2833. case 2:
  2834. return &v.unknownFields
  2835. default:
  2836. return nil
  2837. }
  2838. }
  2839. file_partner_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2840. switch v := v.(*PartnerMessage); i {
  2841. case 0:
  2842. return &v.state
  2843. case 1:
  2844. return &v.sizeCache
  2845. case 2:
  2846. return &v.unknownFields
  2847. default:
  2848. return nil
  2849. }
  2850. }
  2851. file_partner_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2852. switch v := v.(*PartnerBalance); i {
  2853. case 0:
  2854. return &v.state
  2855. case 1:
  2856. return &v.sizeCache
  2857. case 2:
  2858. return &v.unknownFields
  2859. default:
  2860. return nil
  2861. }
  2862. }
  2863. file_partner_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2864. switch v := v.(*PartnerDBBalance); i {
  2865. case 0:
  2866. return &v.state
  2867. case 1:
  2868. return &v.sizeCache
  2869. case 2:
  2870. return &v.unknownFields
  2871. default:
  2872. return nil
  2873. }
  2874. }
  2875. file_partner_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2876. switch v := v.(*PartnerApplyWithdrawRequest); i {
  2877. case 0:
  2878. return &v.state
  2879. case 1:
  2880. return &v.sizeCache
  2881. case 2:
  2882. return &v.unknownFields
  2883. default:
  2884. return nil
  2885. }
  2886. }
  2887. }
  2888. type x struct{}
  2889. out := protoimpl.TypeBuilder{
  2890. File: protoimpl.DescBuilder{
  2891. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2892. RawDescriptor: file_partner_proto_rawDesc,
  2893. NumEnums: 0,
  2894. NumMessages: 26,
  2895. NumExtensions: 0,
  2896. NumServices: 1,
  2897. },
  2898. GoTypes: file_partner_proto_goTypes,
  2899. DependencyIndexes: file_partner_proto_depIdxs,
  2900. MessageInfos: file_partner_proto_msgTypes,
  2901. }.Build()
  2902. File_partner_proto = out.File
  2903. file_partner_proto_rawDesc = nil
  2904. file_partner_proto_goTypes = nil
  2905. file_partner_proto_depIdxs = nil
  2906. }