chat.pb.go 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931
  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: chat.proto
  6. package chat
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. reflect "reflect"
  13. sync "sync"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type GetMatchingPartnerInfoRequest struct {
  22. state protoimpl.MessageState
  23. sizeCache protoimpl.SizeCache
  24. unknownFields protoimpl.UnknownFields
  25. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"` // 性别
  26. UserID string `protobuf:"bytes,2,opt,name=userID,proto3" json:"userID"` // 用户ID
  27. IdentifyId string `protobuf:"bytes,3,opt,name=identifyId,proto3" json:"identifyId"` // 身份ID
  28. OpenId string `protobuf:"bytes,4,opt,name=openId,proto3" json:"openId"`
  29. AppId string `protobuf:"bytes,5,opt,name=appId,proto3" json:"appId"`
  30. }
  31. func (x *GetMatchingPartnerInfoRequest) Reset() {
  32. *x = GetMatchingPartnerInfoRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_chat_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *GetMatchingPartnerInfoRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*GetMatchingPartnerInfoRequest) ProtoMessage() {}
  43. func (x *GetMatchingPartnerInfoRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_chat_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use GetMatchingPartnerInfoRequest.ProtoReflect.Descriptor instead.
  55. func (*GetMatchingPartnerInfoRequest) Descriptor() ([]byte, []int) {
  56. return file_chat_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *GetMatchingPartnerInfoRequest) GetSex() int64 {
  59. if x != nil {
  60. return x.Sex
  61. }
  62. return 0
  63. }
  64. func (x *GetMatchingPartnerInfoRequest) GetUserID() string {
  65. if x != nil {
  66. return x.UserID
  67. }
  68. return ""
  69. }
  70. func (x *GetMatchingPartnerInfoRequest) GetIdentifyId() string {
  71. if x != nil {
  72. return x.IdentifyId
  73. }
  74. return ""
  75. }
  76. func (x *GetMatchingPartnerInfoRequest) GetOpenId() string {
  77. if x != nil {
  78. return x.OpenId
  79. }
  80. return ""
  81. }
  82. func (x *GetMatchingPartnerInfoRequest) GetAppId() string {
  83. if x != nil {
  84. return x.AppId
  85. }
  86. return ""
  87. }
  88. type GetRoomProfitReply struct {
  89. state protoimpl.MessageState
  90. sizeCache protoimpl.SizeCache
  91. unknownFields protoimpl.UnknownFields
  92. RoomProfit int64 `protobuf:"varint,1,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  93. }
  94. func (x *GetRoomProfitReply) Reset() {
  95. *x = GetRoomProfitReply{}
  96. if protoimpl.UnsafeEnabled {
  97. mi := &file_chat_proto_msgTypes[1]
  98. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  99. ms.StoreMessageInfo(mi)
  100. }
  101. }
  102. func (x *GetRoomProfitReply) String() string {
  103. return protoimpl.X.MessageStringOf(x)
  104. }
  105. func (*GetRoomProfitReply) ProtoMessage() {}
  106. func (x *GetRoomProfitReply) ProtoReflect() protoreflect.Message {
  107. mi := &file_chat_proto_msgTypes[1]
  108. if protoimpl.UnsafeEnabled && x != nil {
  109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  110. if ms.LoadMessageInfo() == nil {
  111. ms.StoreMessageInfo(mi)
  112. }
  113. return ms
  114. }
  115. return mi.MessageOf(x)
  116. }
  117. // Deprecated: Use GetRoomProfitReply.ProtoReflect.Descriptor instead.
  118. func (*GetRoomProfitReply) Descriptor() ([]byte, []int) {
  119. return file_chat_proto_rawDescGZIP(), []int{1}
  120. }
  121. func (x *GetRoomProfitReply) GetRoomProfit() int64 {
  122. if x != nil {
  123. return x.RoomProfit
  124. }
  125. return 0
  126. }
  127. type UserUnlockRequest struct {
  128. state protoimpl.MessageState
  129. sizeCache protoimpl.SizeCache
  130. unknownFields protoimpl.UnknownFields
  131. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  132. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  133. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"`
  134. IdentifyId string `protobuf:"bytes,4,opt,name=identifyId,proto3" json:"identifyId"`
  135. }
  136. func (x *UserUnlockRequest) Reset() {
  137. *x = UserUnlockRequest{}
  138. if protoimpl.UnsafeEnabled {
  139. mi := &file_chat_proto_msgTypes[2]
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. ms.StoreMessageInfo(mi)
  142. }
  143. }
  144. func (x *UserUnlockRequest) String() string {
  145. return protoimpl.X.MessageStringOf(x)
  146. }
  147. func (*UserUnlockRequest) ProtoMessage() {}
  148. func (x *UserUnlockRequest) ProtoReflect() protoreflect.Message {
  149. mi := &file_chat_proto_msgTypes[2]
  150. if protoimpl.UnsafeEnabled && x != nil {
  151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  152. if ms.LoadMessageInfo() == nil {
  153. ms.StoreMessageInfo(mi)
  154. }
  155. return ms
  156. }
  157. return mi.MessageOf(x)
  158. }
  159. // Deprecated: Use UserUnlockRequest.ProtoReflect.Descriptor instead.
  160. func (*UserUnlockRequest) Descriptor() ([]byte, []int) {
  161. return file_chat_proto_rawDescGZIP(), []int{2}
  162. }
  163. func (x *UserUnlockRequest) GetRoomId() int64 {
  164. if x != nil {
  165. return x.RoomId
  166. }
  167. return 0
  168. }
  169. func (x *UserUnlockRequest) GetPersonId() string {
  170. if x != nil {
  171. return x.PersonId
  172. }
  173. return ""
  174. }
  175. func (x *UserUnlockRequest) GetPersonType() string {
  176. if x != nil {
  177. return x.PersonType
  178. }
  179. return ""
  180. }
  181. func (x *UserUnlockRequest) GetIdentifyId() string {
  182. if x != nil {
  183. return x.IdentifyId
  184. }
  185. return ""
  186. }
  187. type PartnerCollectIDsRequest struct {
  188. state protoimpl.MessageState
  189. sizeCache protoimpl.SizeCache
  190. unknownFields protoimpl.UnknownFields
  191. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  192. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  193. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"`
  194. IdentifyId string `protobuf:"bytes,4,opt,name=identifyId,proto3" json:"identifyId"`
  195. RoomId int64 `protobuf:"varint,5,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  196. }
  197. func (x *PartnerCollectIDsRequest) Reset() {
  198. *x = PartnerCollectIDsRequest{}
  199. if protoimpl.UnsafeEnabled {
  200. mi := &file_chat_proto_msgTypes[3]
  201. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  202. ms.StoreMessageInfo(mi)
  203. }
  204. }
  205. func (x *PartnerCollectIDsRequest) String() string {
  206. return protoimpl.X.MessageStringOf(x)
  207. }
  208. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  209. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  210. mi := &file_chat_proto_msgTypes[3]
  211. if protoimpl.UnsafeEnabled && x != nil {
  212. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  213. if ms.LoadMessageInfo() == nil {
  214. ms.StoreMessageInfo(mi)
  215. }
  216. return ms
  217. }
  218. return mi.MessageOf(x)
  219. }
  220. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  221. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  222. return file_chat_proto_rawDescGZIP(), []int{3}
  223. }
  224. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  225. if x != nil {
  226. return x.ChatRecordIds
  227. }
  228. return nil
  229. }
  230. func (x *PartnerCollectIDsRequest) GetPersonId() string {
  231. if x != nil {
  232. return x.PersonId
  233. }
  234. return ""
  235. }
  236. func (x *PartnerCollectIDsRequest) GetPersonType() string {
  237. if x != nil {
  238. return x.PersonType
  239. }
  240. return ""
  241. }
  242. func (x *PartnerCollectIDsRequest) GetIdentifyId() string {
  243. if x != nil {
  244. return x.IdentifyId
  245. }
  246. return ""
  247. }
  248. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  249. if x != nil {
  250. return x.RoomId
  251. }
  252. return 0
  253. }
  254. type PartnerCollectRequest struct {
  255. state protoimpl.MessageState
  256. sizeCache protoimpl.SizeCache
  257. unknownFields protoimpl.UnknownFields
  258. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  259. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  260. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"`
  261. IdentifyId string `protobuf:"bytes,4,opt,name=identifyId,proto3" json:"identifyId"`
  262. }
  263. func (x *PartnerCollectRequest) Reset() {
  264. *x = PartnerCollectRequest{}
  265. if protoimpl.UnsafeEnabled {
  266. mi := &file_chat_proto_msgTypes[4]
  267. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  268. ms.StoreMessageInfo(mi)
  269. }
  270. }
  271. func (x *PartnerCollectRequest) String() string {
  272. return protoimpl.X.MessageStringOf(x)
  273. }
  274. func (*PartnerCollectRequest) ProtoMessage() {}
  275. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  276. mi := &file_chat_proto_msgTypes[4]
  277. if protoimpl.UnsafeEnabled && x != nil {
  278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  279. if ms.LoadMessageInfo() == nil {
  280. ms.StoreMessageInfo(mi)
  281. }
  282. return ms
  283. }
  284. return mi.MessageOf(x)
  285. }
  286. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  287. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  288. return file_chat_proto_rawDescGZIP(), []int{4}
  289. }
  290. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  291. if x != nil {
  292. return x.ChatRecordId
  293. }
  294. return 0
  295. }
  296. func (x *PartnerCollectRequest) GetPersonId() string {
  297. if x != nil {
  298. return x.PersonId
  299. }
  300. return ""
  301. }
  302. func (x *PartnerCollectRequest) GetPersonType() string {
  303. if x != nil {
  304. return x.PersonType
  305. }
  306. return ""
  307. }
  308. func (x *PartnerCollectRequest) GetIdentifyId() string {
  309. if x != nil {
  310. return x.IdentifyId
  311. }
  312. return ""
  313. }
  314. type GetRandomMatchingReply struct {
  315. state protoimpl.MessageState
  316. sizeCache protoimpl.SizeCache
  317. unknownFields protoimpl.UnknownFields
  318. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  319. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  320. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  321. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname"` // 昵称
  322. AvatarUrl string `protobuf:"bytes,5,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  323. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  324. Age int64 `protobuf:"varint,7,opt,name=age,proto3" json:"age"` // 年龄
  325. }
  326. func (x *GetRandomMatchingReply) Reset() {
  327. *x = GetRandomMatchingReply{}
  328. if protoimpl.UnsafeEnabled {
  329. mi := &file_chat_proto_msgTypes[5]
  330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  331. ms.StoreMessageInfo(mi)
  332. }
  333. }
  334. func (x *GetRandomMatchingReply) String() string {
  335. return protoimpl.X.MessageStringOf(x)
  336. }
  337. func (*GetRandomMatchingReply) ProtoMessage() {}
  338. func (x *GetRandomMatchingReply) ProtoReflect() protoreflect.Message {
  339. mi := &file_chat_proto_msgTypes[5]
  340. if protoimpl.UnsafeEnabled && x != nil {
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. if ms.LoadMessageInfo() == nil {
  343. ms.StoreMessageInfo(mi)
  344. }
  345. return ms
  346. }
  347. return mi.MessageOf(x)
  348. }
  349. // Deprecated: Use GetRandomMatchingReply.ProtoReflect.Descriptor instead.
  350. func (*GetRandomMatchingReply) Descriptor() ([]byte, []int) {
  351. return file_chat_proto_rawDescGZIP(), []int{5}
  352. }
  353. func (x *GetRandomMatchingReply) GetPersonID() string {
  354. if x != nil {
  355. return x.PersonID
  356. }
  357. return ""
  358. }
  359. func (x *GetRandomMatchingReply) GetPersonType() string {
  360. if x != nil {
  361. return x.PersonType
  362. }
  363. return ""
  364. }
  365. func (x *GetRandomMatchingReply) GetRoomId() int64 {
  366. if x != nil {
  367. return x.RoomId
  368. }
  369. return 0
  370. }
  371. func (x *GetRandomMatchingReply) GetNickname() string {
  372. if x != nil {
  373. return x.Nickname
  374. }
  375. return ""
  376. }
  377. func (x *GetRandomMatchingReply) GetAvatarUrl() string {
  378. if x != nil {
  379. return x.AvatarUrl
  380. }
  381. return ""
  382. }
  383. func (x *GetRandomMatchingReply) GetSex() int64 {
  384. if x != nil {
  385. return x.Sex
  386. }
  387. return 0
  388. }
  389. func (x *GetRandomMatchingReply) GetAge() int64 {
  390. if x != nil {
  391. return x.Age
  392. }
  393. return 0
  394. }
  395. type FindNotReplyNumReply struct {
  396. state protoimpl.MessageState
  397. sizeCache protoimpl.SizeCache
  398. unknownFields protoimpl.UnknownFields
  399. PersonNum int64 `protobuf:"varint,1,opt,name=personNum,proto3" json:"personNum"` // 未接待人数
  400. MessageNum int64 `protobuf:"varint,2,opt,name=messageNum,proto3" json:"messageNum"` // 消息数
  401. }
  402. func (x *FindNotReplyNumReply) Reset() {
  403. *x = FindNotReplyNumReply{}
  404. if protoimpl.UnsafeEnabled {
  405. mi := &file_chat_proto_msgTypes[6]
  406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  407. ms.StoreMessageInfo(mi)
  408. }
  409. }
  410. func (x *FindNotReplyNumReply) String() string {
  411. return protoimpl.X.MessageStringOf(x)
  412. }
  413. func (*FindNotReplyNumReply) ProtoMessage() {}
  414. func (x *FindNotReplyNumReply) ProtoReflect() protoreflect.Message {
  415. mi := &file_chat_proto_msgTypes[6]
  416. if protoimpl.UnsafeEnabled && x != nil {
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. if ms.LoadMessageInfo() == nil {
  419. ms.StoreMessageInfo(mi)
  420. }
  421. return ms
  422. }
  423. return mi.MessageOf(x)
  424. }
  425. // Deprecated: Use FindNotReplyNumReply.ProtoReflect.Descriptor instead.
  426. func (*FindNotReplyNumReply) Descriptor() ([]byte, []int) {
  427. return file_chat_proto_rawDescGZIP(), []int{6}
  428. }
  429. func (x *FindNotReplyNumReply) GetPersonNum() int64 {
  430. if x != nil {
  431. return x.PersonNum
  432. }
  433. return 0
  434. }
  435. func (x *FindNotReplyNumReply) GetMessageNum() int64 {
  436. if x != nil {
  437. return x.MessageNum
  438. }
  439. return 0
  440. }
  441. type FindRecommendPersonListRequest struct {
  442. state protoimpl.MessageState
  443. sizeCache protoimpl.SizeCache
  444. unknownFields protoimpl.UnknownFields
  445. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  446. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  447. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  448. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  449. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别(不筛选就是0)
  450. }
  451. func (x *FindRecommendPersonListRequest) Reset() {
  452. *x = FindRecommendPersonListRequest{}
  453. if protoimpl.UnsafeEnabled {
  454. mi := &file_chat_proto_msgTypes[7]
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. ms.StoreMessageInfo(mi)
  457. }
  458. }
  459. func (x *FindRecommendPersonListRequest) String() string {
  460. return protoimpl.X.MessageStringOf(x)
  461. }
  462. func (*FindRecommendPersonListRequest) ProtoMessage() {}
  463. func (x *FindRecommendPersonListRequest) ProtoReflect() protoreflect.Message {
  464. mi := &file_chat_proto_msgTypes[7]
  465. if protoimpl.UnsafeEnabled && x != nil {
  466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  467. if ms.LoadMessageInfo() == nil {
  468. ms.StoreMessageInfo(mi)
  469. }
  470. return ms
  471. }
  472. return mi.MessageOf(x)
  473. }
  474. // Deprecated: Use FindRecommendPersonListRequest.ProtoReflect.Descriptor instead.
  475. func (*FindRecommendPersonListRequest) Descriptor() ([]byte, []int) {
  476. return file_chat_proto_rawDescGZIP(), []int{7}
  477. }
  478. func (x *FindRecommendPersonListRequest) GetNextId() string {
  479. if x != nil {
  480. return x.NextId
  481. }
  482. return ""
  483. }
  484. func (x *FindRecommendPersonListRequest) GetOffset() int64 {
  485. if x != nil {
  486. return x.Offset
  487. }
  488. return 0
  489. }
  490. func (x *FindRecommendPersonListRequest) GetPersonID() string {
  491. if x != nil {
  492. return x.PersonID
  493. }
  494. return ""
  495. }
  496. func (x *FindRecommendPersonListRequest) GetPersonType() string {
  497. if x != nil {
  498. return x.PersonType
  499. }
  500. return ""
  501. }
  502. func (x *FindRecommendPersonListRequest) GetSex() int64 {
  503. if x != nil {
  504. return x.Sex
  505. }
  506. return 0
  507. }
  508. type FindRoomCardMsgRequest struct {
  509. state protoimpl.MessageState
  510. sizeCache protoimpl.SizeCache
  511. unknownFields protoimpl.UnknownFields
  512. UserIdentifyId string `protobuf:"bytes,1,opt,name=userIdentifyId,proto3" json:"userIdentifyId"` // 身份ID
  513. PartnerIdentifyId string `protobuf:"bytes,2,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"` // 身份ID
  514. }
  515. func (x *FindRoomCardMsgRequest) Reset() {
  516. *x = FindRoomCardMsgRequest{}
  517. if protoimpl.UnsafeEnabled {
  518. mi := &file_chat_proto_msgTypes[8]
  519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  520. ms.StoreMessageInfo(mi)
  521. }
  522. }
  523. func (x *FindRoomCardMsgRequest) String() string {
  524. return protoimpl.X.MessageStringOf(x)
  525. }
  526. func (*FindRoomCardMsgRequest) ProtoMessage() {}
  527. func (x *FindRoomCardMsgRequest) ProtoReflect() protoreflect.Message {
  528. mi := &file_chat_proto_msgTypes[8]
  529. if protoimpl.UnsafeEnabled && x != nil {
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. if ms.LoadMessageInfo() == nil {
  532. ms.StoreMessageInfo(mi)
  533. }
  534. return ms
  535. }
  536. return mi.MessageOf(x)
  537. }
  538. // Deprecated: Use FindRoomCardMsgRequest.ProtoReflect.Descriptor instead.
  539. func (*FindRoomCardMsgRequest) Descriptor() ([]byte, []int) {
  540. return file_chat_proto_rawDescGZIP(), []int{8}
  541. }
  542. func (x *FindRoomCardMsgRequest) GetUserIdentifyId() string {
  543. if x != nil {
  544. return x.UserIdentifyId
  545. }
  546. return ""
  547. }
  548. func (x *FindRoomCardMsgRequest) GetPartnerIdentifyId() string {
  549. if x != nil {
  550. return x.PartnerIdentifyId
  551. }
  552. return ""
  553. }
  554. type PartnerGetAwardReply struct {
  555. state protoimpl.MessageState
  556. sizeCache protoimpl.SizeCache
  557. unknownFields protoimpl.UnknownFields
  558. Balance int64 `protobuf:"varint,1,opt,name=balance,proto3" json:"balance"`
  559. }
  560. func (x *PartnerGetAwardReply) Reset() {
  561. *x = PartnerGetAwardReply{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_chat_proto_msgTypes[9]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *PartnerGetAwardReply) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*PartnerGetAwardReply) ProtoMessage() {}
  572. func (x *PartnerGetAwardReply) ProtoReflect() protoreflect.Message {
  573. mi := &file_chat_proto_msgTypes[9]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use PartnerGetAwardReply.ProtoReflect.Descriptor instead.
  584. func (*PartnerGetAwardReply) Descriptor() ([]byte, []int) {
  585. return file_chat_proto_rawDescGZIP(), []int{9}
  586. }
  587. func (x *PartnerGetAwardReply) GetBalance() int64 {
  588. if x != nil {
  589. return x.Balance
  590. }
  591. return 0
  592. }
  593. type PartnerGetAwardRequest struct {
  594. state protoimpl.MessageState
  595. sizeCache protoimpl.SizeCache
  596. unknownFields protoimpl.UnknownFields
  597. UserIdentifyId string `protobuf:"bytes,1,opt,name=userIdentifyId,proto3" json:"userIdentifyId"` // 身份ID
  598. PartnerIdentifyId string `protobuf:"bytes,2,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"` // 身份ID
  599. AwardType string `protobuf:"bytes,3,opt,name=awardType,proto3" json:"awardType"`
  600. }
  601. func (x *PartnerGetAwardRequest) Reset() {
  602. *x = PartnerGetAwardRequest{}
  603. if protoimpl.UnsafeEnabled {
  604. mi := &file_chat_proto_msgTypes[10]
  605. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  606. ms.StoreMessageInfo(mi)
  607. }
  608. }
  609. func (x *PartnerGetAwardRequest) String() string {
  610. return protoimpl.X.MessageStringOf(x)
  611. }
  612. func (*PartnerGetAwardRequest) ProtoMessage() {}
  613. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  614. mi := &file_chat_proto_msgTypes[10]
  615. if protoimpl.UnsafeEnabled && x != nil {
  616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  617. if ms.LoadMessageInfo() == nil {
  618. ms.StoreMessageInfo(mi)
  619. }
  620. return ms
  621. }
  622. return mi.MessageOf(x)
  623. }
  624. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  625. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  626. return file_chat_proto_rawDescGZIP(), []int{10}
  627. }
  628. func (x *PartnerGetAwardRequest) GetUserIdentifyId() string {
  629. if x != nil {
  630. return x.UserIdentifyId
  631. }
  632. return ""
  633. }
  634. func (x *PartnerGetAwardRequest) GetPartnerIdentifyId() string {
  635. if x != nil {
  636. return x.PartnerIdentifyId
  637. }
  638. return ""
  639. }
  640. func (x *PartnerGetAwardRequest) GetAwardType() string {
  641. if x != nil {
  642. return x.AwardType
  643. }
  644. return ""
  645. }
  646. type PartnerFindRoomListRequest struct {
  647. state protoimpl.MessageState
  648. sizeCache protoimpl.SizeCache
  649. unknownFields protoimpl.UnknownFields
  650. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  651. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  652. IdentifyId string `protobuf:"bytes,3,opt,name=IdentifyId,proto3" json:"IdentifyId"`
  653. IsFindNotReply bool `protobuf:"varint,4,opt,name=isFindNotReply,proto3" json:"isFindNotReply"` // 是否查询没回复过的内容
  654. IsWithinSevenDay bool `protobuf:"varint,5,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  655. }
  656. func (x *PartnerFindRoomListRequest) Reset() {
  657. *x = PartnerFindRoomListRequest{}
  658. if protoimpl.UnsafeEnabled {
  659. mi := &file_chat_proto_msgTypes[11]
  660. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  661. ms.StoreMessageInfo(mi)
  662. }
  663. }
  664. func (x *PartnerFindRoomListRequest) String() string {
  665. return protoimpl.X.MessageStringOf(x)
  666. }
  667. func (*PartnerFindRoomListRequest) ProtoMessage() {}
  668. func (x *PartnerFindRoomListRequest) ProtoReflect() protoreflect.Message {
  669. mi := &file_chat_proto_msgTypes[11]
  670. if protoimpl.UnsafeEnabled && x != nil {
  671. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  672. if ms.LoadMessageInfo() == nil {
  673. ms.StoreMessageInfo(mi)
  674. }
  675. return ms
  676. }
  677. return mi.MessageOf(x)
  678. }
  679. // Deprecated: Use PartnerFindRoomListRequest.ProtoReflect.Descriptor instead.
  680. func (*PartnerFindRoomListRequest) Descriptor() ([]byte, []int) {
  681. return file_chat_proto_rawDescGZIP(), []int{11}
  682. }
  683. func (x *PartnerFindRoomListRequest) GetNextId() int64 {
  684. if x != nil {
  685. return x.NextId
  686. }
  687. return 0
  688. }
  689. func (x *PartnerFindRoomListRequest) GetOffset() int64 {
  690. if x != nil {
  691. return x.Offset
  692. }
  693. return 0
  694. }
  695. func (x *PartnerFindRoomListRequest) GetIdentifyId() string {
  696. if x != nil {
  697. return x.IdentifyId
  698. }
  699. return ""
  700. }
  701. func (x *PartnerFindRoomListRequest) GetIsFindNotReply() bool {
  702. if x != nil {
  703. return x.IsFindNotReply
  704. }
  705. return false
  706. }
  707. func (x *PartnerFindRoomListRequest) GetIsWithinSevenDay() bool {
  708. if x != nil {
  709. return x.IsWithinSevenDay
  710. }
  711. return false
  712. }
  713. type UserFindRoomListRequest struct {
  714. state protoimpl.MessageState
  715. sizeCache protoimpl.SizeCache
  716. unknownFields protoimpl.UnknownFields
  717. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  718. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  719. IdentifyId string `protobuf:"bytes,3,opt,name=IdentifyId,proto3" json:"IdentifyId"`
  720. IsWithinSevenDay bool `protobuf:"varint,4,opt,name=isWithinSevenDay,proto3" json:"isWithinSevenDay"` // 是否在七日内
  721. }
  722. func (x *UserFindRoomListRequest) Reset() {
  723. *x = UserFindRoomListRequest{}
  724. if protoimpl.UnsafeEnabled {
  725. mi := &file_chat_proto_msgTypes[12]
  726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  727. ms.StoreMessageInfo(mi)
  728. }
  729. }
  730. func (x *UserFindRoomListRequest) String() string {
  731. return protoimpl.X.MessageStringOf(x)
  732. }
  733. func (*UserFindRoomListRequest) ProtoMessage() {}
  734. func (x *UserFindRoomListRequest) ProtoReflect() protoreflect.Message {
  735. mi := &file_chat_proto_msgTypes[12]
  736. if protoimpl.UnsafeEnabled && x != nil {
  737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  738. if ms.LoadMessageInfo() == nil {
  739. ms.StoreMessageInfo(mi)
  740. }
  741. return ms
  742. }
  743. return mi.MessageOf(x)
  744. }
  745. // Deprecated: Use UserFindRoomListRequest.ProtoReflect.Descriptor instead.
  746. func (*UserFindRoomListRequest) Descriptor() ([]byte, []int) {
  747. return file_chat_proto_rawDescGZIP(), []int{12}
  748. }
  749. func (x *UserFindRoomListRequest) GetNextId() int64 {
  750. if x != nil {
  751. return x.NextId
  752. }
  753. return 0
  754. }
  755. func (x *UserFindRoomListRequest) GetOffset() int64 {
  756. if x != nil {
  757. return x.Offset
  758. }
  759. return 0
  760. }
  761. func (x *UserFindRoomListRequest) GetIdentifyId() string {
  762. if x != nil {
  763. return x.IdentifyId
  764. }
  765. return ""
  766. }
  767. func (x *UserFindRoomListRequest) GetIsWithinSevenDay() bool {
  768. if x != nil {
  769. return x.IsWithinSevenDay
  770. }
  771. return false
  772. }
  773. type UserFindRoomListReply struct {
  774. state protoimpl.MessageState
  775. sizeCache protoimpl.SizeCache
  776. unknownFields protoimpl.UnknownFields
  777. List []*UserRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  778. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  779. }
  780. func (x *UserFindRoomListReply) Reset() {
  781. *x = UserFindRoomListReply{}
  782. if protoimpl.UnsafeEnabled {
  783. mi := &file_chat_proto_msgTypes[13]
  784. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  785. ms.StoreMessageInfo(mi)
  786. }
  787. }
  788. func (x *UserFindRoomListReply) String() string {
  789. return protoimpl.X.MessageStringOf(x)
  790. }
  791. func (*UserFindRoomListReply) ProtoMessage() {}
  792. func (x *UserFindRoomListReply) ProtoReflect() protoreflect.Message {
  793. mi := &file_chat_proto_msgTypes[13]
  794. if protoimpl.UnsafeEnabled && x != nil {
  795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  796. if ms.LoadMessageInfo() == nil {
  797. ms.StoreMessageInfo(mi)
  798. }
  799. return ms
  800. }
  801. return mi.MessageOf(x)
  802. }
  803. // Deprecated: Use UserFindRoomListReply.ProtoReflect.Descriptor instead.
  804. func (*UserFindRoomListReply) Descriptor() ([]byte, []int) {
  805. return file_chat_proto_rawDescGZIP(), []int{13}
  806. }
  807. func (x *UserFindRoomListReply) GetList() []*UserRoomInfo {
  808. if x != nil {
  809. return x.List
  810. }
  811. return nil
  812. }
  813. func (x *UserFindRoomListReply) GetNextId() int64 {
  814. if x != nil {
  815. return x.NextId
  816. }
  817. return 0
  818. }
  819. type UserRoomInfo struct {
  820. state protoimpl.MessageState
  821. sizeCache protoimpl.SizeCache
  822. unknownFields protoimpl.UnknownFields
  823. PersonType string `protobuf:"bytes,1,opt,name=personType,proto3" json:"personType"` // 用户类型
  824. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  825. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  826. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  827. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  828. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  829. RoomId int64 `protobuf:"varint,7,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  830. }
  831. func (x *UserRoomInfo) Reset() {
  832. *x = UserRoomInfo{}
  833. if protoimpl.UnsafeEnabled {
  834. mi := &file_chat_proto_msgTypes[14]
  835. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  836. ms.StoreMessageInfo(mi)
  837. }
  838. }
  839. func (x *UserRoomInfo) String() string {
  840. return protoimpl.X.MessageStringOf(x)
  841. }
  842. func (*UserRoomInfo) ProtoMessage() {}
  843. func (x *UserRoomInfo) ProtoReflect() protoreflect.Message {
  844. mi := &file_chat_proto_msgTypes[14]
  845. if protoimpl.UnsafeEnabled && x != nil {
  846. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  847. if ms.LoadMessageInfo() == nil {
  848. ms.StoreMessageInfo(mi)
  849. }
  850. return ms
  851. }
  852. return mi.MessageOf(x)
  853. }
  854. // Deprecated: Use UserRoomInfo.ProtoReflect.Descriptor instead.
  855. func (*UserRoomInfo) Descriptor() ([]byte, []int) {
  856. return file_chat_proto_rawDescGZIP(), []int{14}
  857. }
  858. func (x *UserRoomInfo) GetPersonType() string {
  859. if x != nil {
  860. return x.PersonType
  861. }
  862. return ""
  863. }
  864. func (x *UserRoomInfo) GetPersonId() string {
  865. if x != nil {
  866. return x.PersonId
  867. }
  868. return ""
  869. }
  870. func (x *UserRoomInfo) GetUnreadNum() int64 {
  871. if x != nil {
  872. return x.UnreadNum
  873. }
  874. return 0
  875. }
  876. func (x *UserRoomInfo) GetLastContent() string {
  877. if x != nil {
  878. return x.LastContent
  879. }
  880. return ""
  881. }
  882. func (x *UserRoomInfo) GetLastTime() int64 {
  883. if x != nil {
  884. return x.LastTime
  885. }
  886. return 0
  887. }
  888. func (x *UserRoomInfo) GetLikeability() int64 {
  889. if x != nil {
  890. return x.Likeability
  891. }
  892. return 0
  893. }
  894. func (x *UserRoomInfo) GetRoomId() int64 {
  895. if x != nil {
  896. return x.RoomId
  897. }
  898. return 0
  899. }
  900. type PartnerFindRoomListReply struct {
  901. state protoimpl.MessageState
  902. sizeCache protoimpl.SizeCache
  903. unknownFields protoimpl.UnknownFields
  904. List []*PartnerRoomInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  905. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  906. }
  907. func (x *PartnerFindRoomListReply) Reset() {
  908. *x = PartnerFindRoomListReply{}
  909. if protoimpl.UnsafeEnabled {
  910. mi := &file_chat_proto_msgTypes[15]
  911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  912. ms.StoreMessageInfo(mi)
  913. }
  914. }
  915. func (x *PartnerFindRoomListReply) String() string {
  916. return protoimpl.X.MessageStringOf(x)
  917. }
  918. func (*PartnerFindRoomListReply) ProtoMessage() {}
  919. func (x *PartnerFindRoomListReply) ProtoReflect() protoreflect.Message {
  920. mi := &file_chat_proto_msgTypes[15]
  921. if protoimpl.UnsafeEnabled && x != nil {
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. if ms.LoadMessageInfo() == nil {
  924. ms.StoreMessageInfo(mi)
  925. }
  926. return ms
  927. }
  928. return mi.MessageOf(x)
  929. }
  930. // Deprecated: Use PartnerFindRoomListReply.ProtoReflect.Descriptor instead.
  931. func (*PartnerFindRoomListReply) Descriptor() ([]byte, []int) {
  932. return file_chat_proto_rawDescGZIP(), []int{15}
  933. }
  934. func (x *PartnerFindRoomListReply) GetList() []*PartnerRoomInfo {
  935. if x != nil {
  936. return x.List
  937. }
  938. return nil
  939. }
  940. func (x *PartnerFindRoomListReply) GetNextId() int64 {
  941. if x != nil {
  942. return x.NextId
  943. }
  944. return 0
  945. }
  946. type PartnerRoomInfo struct {
  947. state protoimpl.MessageState
  948. sizeCache protoimpl.SizeCache
  949. unknownFields protoimpl.UnknownFields
  950. PersonSendNum int64 `protobuf:"varint,1,opt,name=personSendNum,proto3" json:"personSendNum"` // 用户发送数
  951. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  952. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 接待者未读数
  953. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  954. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  955. Benefit int64 `protobuf:"varint,6,opt,name=benefit,proto3" json:"benefit"` // 收益
  956. Type string `protobuf:"bytes,7,opt,name=type,proto3" json:"type"` // 类型(新客:new,付费:pay)
  957. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  958. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  959. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  960. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  961. Likeability int64 `protobuf:"varint,12,opt,name=likeability,proto3" json:"likeability"` // 好感度
  962. RoomId int64 `protobuf:"varint,13,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  963. PersonSendBaseNum int64 `protobuf:"varint,14,opt,name=personSendBaseNum,proto3" json:"personSendBaseNum"` // 用户发送基数
  964. }
  965. func (x *PartnerRoomInfo) Reset() {
  966. *x = PartnerRoomInfo{}
  967. if protoimpl.UnsafeEnabled {
  968. mi := &file_chat_proto_msgTypes[16]
  969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  970. ms.StoreMessageInfo(mi)
  971. }
  972. }
  973. func (x *PartnerRoomInfo) String() string {
  974. return protoimpl.X.MessageStringOf(x)
  975. }
  976. func (*PartnerRoomInfo) ProtoMessage() {}
  977. func (x *PartnerRoomInfo) ProtoReflect() protoreflect.Message {
  978. mi := &file_chat_proto_msgTypes[16]
  979. if protoimpl.UnsafeEnabled && x != nil {
  980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  981. if ms.LoadMessageInfo() == nil {
  982. ms.StoreMessageInfo(mi)
  983. }
  984. return ms
  985. }
  986. return mi.MessageOf(x)
  987. }
  988. // Deprecated: Use PartnerRoomInfo.ProtoReflect.Descriptor instead.
  989. func (*PartnerRoomInfo) Descriptor() ([]byte, []int) {
  990. return file_chat_proto_rawDescGZIP(), []int{16}
  991. }
  992. func (x *PartnerRoomInfo) GetPersonSendNum() int64 {
  993. if x != nil {
  994. return x.PersonSendNum
  995. }
  996. return 0
  997. }
  998. func (x *PartnerRoomInfo) GetPersonId() string {
  999. if x != nil {
  1000. return x.PersonId
  1001. }
  1002. return ""
  1003. }
  1004. func (x *PartnerRoomInfo) GetUnreadNum() int64 {
  1005. if x != nil {
  1006. return x.UnreadNum
  1007. }
  1008. return 0
  1009. }
  1010. func (x *PartnerRoomInfo) GetLastContent() string {
  1011. if x != nil {
  1012. return x.LastContent
  1013. }
  1014. return ""
  1015. }
  1016. func (x *PartnerRoomInfo) GetLastTime() int64 {
  1017. if x != nil {
  1018. return x.LastTime
  1019. }
  1020. return 0
  1021. }
  1022. func (x *PartnerRoomInfo) GetBenefit() int64 {
  1023. if x != nil {
  1024. return x.Benefit
  1025. }
  1026. return 0
  1027. }
  1028. func (x *PartnerRoomInfo) GetType() string {
  1029. if x != nil {
  1030. return x.Type
  1031. }
  1032. return ""
  1033. }
  1034. func (x *PartnerRoomInfo) GetSex() int64 {
  1035. if x != nil {
  1036. return x.Sex
  1037. }
  1038. return 0
  1039. }
  1040. func (x *PartnerRoomInfo) GetAvatarUrl() string {
  1041. if x != nil {
  1042. return x.AvatarUrl
  1043. }
  1044. return ""
  1045. }
  1046. func (x *PartnerRoomInfo) GetNickname() string {
  1047. if x != nil {
  1048. return x.Nickname
  1049. }
  1050. return ""
  1051. }
  1052. func (x *PartnerRoomInfo) GetAge() int64 {
  1053. if x != nil {
  1054. return x.Age
  1055. }
  1056. return 0
  1057. }
  1058. func (x *PartnerRoomInfo) GetLikeability() int64 {
  1059. if x != nil {
  1060. return x.Likeability
  1061. }
  1062. return 0
  1063. }
  1064. func (x *PartnerRoomInfo) GetRoomId() int64 {
  1065. if x != nil {
  1066. return x.RoomId
  1067. }
  1068. return 0
  1069. }
  1070. func (x *PartnerRoomInfo) GetPersonSendBaseNum() int64 {
  1071. if x != nil {
  1072. return x.PersonSendBaseNum
  1073. }
  1074. return 0
  1075. }
  1076. type CreateChatRoomParam struct {
  1077. state protoimpl.MessageState
  1078. sizeCache protoimpl.SizeCache
  1079. unknownFields protoimpl.UnknownFields
  1080. PersonId1 string `protobuf:"bytes,1,opt,name=personId1,proto3" json:"personId1"`
  1081. PersonIdentifyID1 string `protobuf:"bytes,2,opt,name=personIdentifyID1,proto3" json:"personIdentifyID1"` // 身份ID
  1082. PersonType1 string `protobuf:"bytes,3,opt,name=personType1,proto3" json:"personType1"` // 类型
  1083. PersonId2 string `protobuf:"bytes,4,opt,name=personId2,proto3" json:"personId2"`
  1084. PersonIdentifyID2 string `protobuf:"bytes,5,opt,name=personIdentifyID2,proto3" json:"personIdentifyID2"` // 身份ID
  1085. PersonType2 string `protobuf:"bytes,6,opt,name=personType2,proto3" json:"personType2"` // 类型
  1086. Source string `protobuf:"bytes,7,opt,name=source,proto3" json:"source"` // 来源
  1087. }
  1088. func (x *CreateChatRoomParam) Reset() {
  1089. *x = CreateChatRoomParam{}
  1090. if protoimpl.UnsafeEnabled {
  1091. mi := &file_chat_proto_msgTypes[17]
  1092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1093. ms.StoreMessageInfo(mi)
  1094. }
  1095. }
  1096. func (x *CreateChatRoomParam) String() string {
  1097. return protoimpl.X.MessageStringOf(x)
  1098. }
  1099. func (*CreateChatRoomParam) ProtoMessage() {}
  1100. func (x *CreateChatRoomParam) ProtoReflect() protoreflect.Message {
  1101. mi := &file_chat_proto_msgTypes[17]
  1102. if protoimpl.UnsafeEnabled && x != nil {
  1103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1104. if ms.LoadMessageInfo() == nil {
  1105. ms.StoreMessageInfo(mi)
  1106. }
  1107. return ms
  1108. }
  1109. return mi.MessageOf(x)
  1110. }
  1111. // Deprecated: Use CreateChatRoomParam.ProtoReflect.Descriptor instead.
  1112. func (*CreateChatRoomParam) Descriptor() ([]byte, []int) {
  1113. return file_chat_proto_rawDescGZIP(), []int{17}
  1114. }
  1115. func (x *CreateChatRoomParam) GetPersonId1() string {
  1116. if x != nil {
  1117. return x.PersonId1
  1118. }
  1119. return ""
  1120. }
  1121. func (x *CreateChatRoomParam) GetPersonIdentifyID1() string {
  1122. if x != nil {
  1123. return x.PersonIdentifyID1
  1124. }
  1125. return ""
  1126. }
  1127. func (x *CreateChatRoomParam) GetPersonType1() string {
  1128. if x != nil {
  1129. return x.PersonType1
  1130. }
  1131. return ""
  1132. }
  1133. func (x *CreateChatRoomParam) GetPersonId2() string {
  1134. if x != nil {
  1135. return x.PersonId2
  1136. }
  1137. return ""
  1138. }
  1139. func (x *CreateChatRoomParam) GetPersonIdentifyID2() string {
  1140. if x != nil {
  1141. return x.PersonIdentifyID2
  1142. }
  1143. return ""
  1144. }
  1145. func (x *CreateChatRoomParam) GetPersonType2() string {
  1146. if x != nil {
  1147. return x.PersonType2
  1148. }
  1149. return ""
  1150. }
  1151. func (x *CreateChatRoomParam) GetSource() string {
  1152. if x != nil {
  1153. return x.Source
  1154. }
  1155. return ""
  1156. }
  1157. type SetBlackChatParam struct {
  1158. state protoimpl.MessageState
  1159. sizeCache protoimpl.SizeCache
  1160. unknownFields protoimpl.UnknownFields
  1161. PersonIdentifyId string `protobuf:"bytes,1,opt,name=personIdentifyId,proto3" json:"personIdentifyId"` // 拉黑者的身份ID
  1162. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1163. }
  1164. func (x *SetBlackChatParam) Reset() {
  1165. *x = SetBlackChatParam{}
  1166. if protoimpl.UnsafeEnabled {
  1167. mi := &file_chat_proto_msgTypes[18]
  1168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1169. ms.StoreMessageInfo(mi)
  1170. }
  1171. }
  1172. func (x *SetBlackChatParam) String() string {
  1173. return protoimpl.X.MessageStringOf(x)
  1174. }
  1175. func (*SetBlackChatParam) ProtoMessage() {}
  1176. func (x *SetBlackChatParam) ProtoReflect() protoreflect.Message {
  1177. mi := &file_chat_proto_msgTypes[18]
  1178. if protoimpl.UnsafeEnabled && x != nil {
  1179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1180. if ms.LoadMessageInfo() == nil {
  1181. ms.StoreMessageInfo(mi)
  1182. }
  1183. return ms
  1184. }
  1185. return mi.MessageOf(x)
  1186. }
  1187. // Deprecated: Use SetBlackChatParam.ProtoReflect.Descriptor instead.
  1188. func (*SetBlackChatParam) Descriptor() ([]byte, []int) {
  1189. return file_chat_proto_rawDescGZIP(), []int{18}
  1190. }
  1191. func (x *SetBlackChatParam) GetPersonIdentifyId() string {
  1192. if x != nil {
  1193. return x.PersonIdentifyId
  1194. }
  1195. return ""
  1196. }
  1197. func (x *SetBlackChatParam) GetRoomId() int64 {
  1198. if x != nil {
  1199. return x.RoomId
  1200. }
  1201. return 0
  1202. }
  1203. type ReceiveRequest struct {
  1204. state protoimpl.MessageState
  1205. sizeCache protoimpl.SizeCache
  1206. unknownFields protoimpl.UnknownFields
  1207. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method"`
  1208. Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  1209. Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id"`
  1210. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  1211. PersonType string `protobuf:"bytes,5,opt,name=personType,proto3" json:"personType"`
  1212. PersonId string `protobuf:"bytes,6,opt,name=personId,proto3" json:"personId"`
  1213. }
  1214. func (x *ReceiveRequest) Reset() {
  1215. *x = ReceiveRequest{}
  1216. if protoimpl.UnsafeEnabled {
  1217. mi := &file_chat_proto_msgTypes[19]
  1218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1219. ms.StoreMessageInfo(mi)
  1220. }
  1221. }
  1222. func (x *ReceiveRequest) String() string {
  1223. return protoimpl.X.MessageStringOf(x)
  1224. }
  1225. func (*ReceiveRequest) ProtoMessage() {}
  1226. func (x *ReceiveRequest) ProtoReflect() protoreflect.Message {
  1227. mi := &file_chat_proto_msgTypes[19]
  1228. if protoimpl.UnsafeEnabled && x != nil {
  1229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1230. if ms.LoadMessageInfo() == nil {
  1231. ms.StoreMessageInfo(mi)
  1232. }
  1233. return ms
  1234. }
  1235. return mi.MessageOf(x)
  1236. }
  1237. // Deprecated: Use ReceiveRequest.ProtoReflect.Descriptor instead.
  1238. func (*ReceiveRequest) Descriptor() ([]byte, []int) {
  1239. return file_chat_proto_rawDescGZIP(), []int{19}
  1240. }
  1241. func (x *ReceiveRequest) GetMethod() string {
  1242. if x != nil {
  1243. return x.Method
  1244. }
  1245. return ""
  1246. }
  1247. func (x *ReceiveRequest) GetData() []byte {
  1248. if x != nil {
  1249. return x.Data
  1250. }
  1251. return nil
  1252. }
  1253. func (x *ReceiveRequest) GetId() string {
  1254. if x != nil {
  1255. return x.Id
  1256. }
  1257. return ""
  1258. }
  1259. func (x *ReceiveRequest) GetWebsocketTag() string {
  1260. if x != nil {
  1261. return x.WebsocketTag
  1262. }
  1263. return ""
  1264. }
  1265. func (x *ReceiveRequest) GetPersonType() string {
  1266. if x != nil {
  1267. return x.PersonType
  1268. }
  1269. return ""
  1270. }
  1271. func (x *ReceiveRequest) GetPersonId() string {
  1272. if x != nil {
  1273. return x.PersonId
  1274. }
  1275. return ""
  1276. }
  1277. type ReceiveReply struct {
  1278. state protoimpl.MessageState
  1279. sizeCache protoimpl.SizeCache
  1280. unknownFields protoimpl.UnknownFields
  1281. }
  1282. func (x *ReceiveReply) Reset() {
  1283. *x = ReceiveReply{}
  1284. if protoimpl.UnsafeEnabled {
  1285. mi := &file_chat_proto_msgTypes[20]
  1286. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1287. ms.StoreMessageInfo(mi)
  1288. }
  1289. }
  1290. func (x *ReceiveReply) String() string {
  1291. return protoimpl.X.MessageStringOf(x)
  1292. }
  1293. func (*ReceiveReply) ProtoMessage() {}
  1294. func (x *ReceiveReply) ProtoReflect() protoreflect.Message {
  1295. mi := &file_chat_proto_msgTypes[20]
  1296. if protoimpl.UnsafeEnabled && x != nil {
  1297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1298. if ms.LoadMessageInfo() == nil {
  1299. ms.StoreMessageInfo(mi)
  1300. }
  1301. return ms
  1302. }
  1303. return mi.MessageOf(x)
  1304. }
  1305. // Deprecated: Use ReceiveReply.ProtoReflect.Descriptor instead.
  1306. func (*ReceiveReply) Descriptor() ([]byte, []int) {
  1307. return file_chat_proto_rawDescGZIP(), []int{20}
  1308. }
  1309. type CheckUserPartnerIsRelationshipReply struct {
  1310. state protoimpl.MessageState
  1311. sizeCache protoimpl.SizeCache
  1312. unknownFields protoimpl.UnknownFields
  1313. IsBuildRelationship bool `protobuf:"varint,1,opt,name=isBuildRelationship,proto3" json:"isBuildRelationship"`
  1314. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"`
  1315. }
  1316. func (x *CheckUserPartnerIsRelationshipReply) Reset() {
  1317. *x = CheckUserPartnerIsRelationshipReply{}
  1318. if protoimpl.UnsafeEnabled {
  1319. mi := &file_chat_proto_msgTypes[21]
  1320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1321. ms.StoreMessageInfo(mi)
  1322. }
  1323. }
  1324. func (x *CheckUserPartnerIsRelationshipReply) String() string {
  1325. return protoimpl.X.MessageStringOf(x)
  1326. }
  1327. func (*CheckUserPartnerIsRelationshipReply) ProtoMessage() {}
  1328. func (x *CheckUserPartnerIsRelationshipReply) ProtoReflect() protoreflect.Message {
  1329. mi := &file_chat_proto_msgTypes[21]
  1330. if protoimpl.UnsafeEnabled && x != nil {
  1331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1332. if ms.LoadMessageInfo() == nil {
  1333. ms.StoreMessageInfo(mi)
  1334. }
  1335. return ms
  1336. }
  1337. return mi.MessageOf(x)
  1338. }
  1339. // Deprecated: Use CheckUserPartnerIsRelationshipReply.ProtoReflect.Descriptor instead.
  1340. func (*CheckUserPartnerIsRelationshipReply) Descriptor() ([]byte, []int) {
  1341. return file_chat_proto_rawDescGZIP(), []int{21}
  1342. }
  1343. func (x *CheckUserPartnerIsRelationshipReply) GetIsBuildRelationship() bool {
  1344. if x != nil {
  1345. return x.IsBuildRelationship
  1346. }
  1347. return false
  1348. }
  1349. func (x *CheckUserPartnerIsRelationshipReply) GetRoomId() int64 {
  1350. if x != nil {
  1351. return x.RoomId
  1352. }
  1353. return 0
  1354. }
  1355. type RoomReply struct {
  1356. state protoimpl.MessageState
  1357. sizeCache protoimpl.SizeCache
  1358. unknownFields protoimpl.UnknownFields
  1359. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  1360. }
  1361. func (x *RoomReply) Reset() {
  1362. *x = RoomReply{}
  1363. if protoimpl.UnsafeEnabled {
  1364. mi := &file_chat_proto_msgTypes[22]
  1365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1366. ms.StoreMessageInfo(mi)
  1367. }
  1368. }
  1369. func (x *RoomReply) String() string {
  1370. return protoimpl.X.MessageStringOf(x)
  1371. }
  1372. func (*RoomReply) ProtoMessage() {}
  1373. func (x *RoomReply) ProtoReflect() protoreflect.Message {
  1374. mi := &file_chat_proto_msgTypes[22]
  1375. if protoimpl.UnsafeEnabled && x != nil {
  1376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1377. if ms.LoadMessageInfo() == nil {
  1378. ms.StoreMessageInfo(mi)
  1379. }
  1380. return ms
  1381. }
  1382. return mi.MessageOf(x)
  1383. }
  1384. // Deprecated: Use RoomReply.ProtoReflect.Descriptor instead.
  1385. func (*RoomReply) Descriptor() ([]byte, []int) {
  1386. return file_chat_proto_rawDescGZIP(), []int{22}
  1387. }
  1388. func (x *RoomReply) GetRoomId() int64 {
  1389. if x != nil {
  1390. return x.RoomId
  1391. }
  1392. return 0
  1393. }
  1394. type FindChatRoomMsgRequest struct {
  1395. state protoimpl.MessageState
  1396. sizeCache protoimpl.SizeCache
  1397. unknownFields protoimpl.UnknownFields
  1398. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  1399. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1400. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1401. }
  1402. func (x *FindChatRoomMsgRequest) Reset() {
  1403. *x = FindChatRoomMsgRequest{}
  1404. if protoimpl.UnsafeEnabled {
  1405. mi := &file_chat_proto_msgTypes[23]
  1406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1407. ms.StoreMessageInfo(mi)
  1408. }
  1409. }
  1410. func (x *FindChatRoomMsgRequest) String() string {
  1411. return protoimpl.X.MessageStringOf(x)
  1412. }
  1413. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  1414. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  1415. mi := &file_chat_proto_msgTypes[23]
  1416. if protoimpl.UnsafeEnabled && x != nil {
  1417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1418. if ms.LoadMessageInfo() == nil {
  1419. ms.StoreMessageInfo(mi)
  1420. }
  1421. return ms
  1422. }
  1423. return mi.MessageOf(x)
  1424. }
  1425. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  1426. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  1427. return file_chat_proto_rawDescGZIP(), []int{23}
  1428. }
  1429. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  1430. if x != nil {
  1431. return x.RoomId
  1432. }
  1433. return 0
  1434. }
  1435. func (x *FindChatRoomMsgRequest) GetPersonType() string {
  1436. if x != nil {
  1437. return x.PersonType
  1438. }
  1439. return ""
  1440. }
  1441. func (x *FindChatRoomMsgRequest) GetPersonID() string {
  1442. if x != nil {
  1443. return x.PersonID
  1444. }
  1445. return ""
  1446. }
  1447. type FindChatRecordListRequest struct {
  1448. state protoimpl.MessageState
  1449. sizeCache protoimpl.SizeCache
  1450. unknownFields protoimpl.UnknownFields
  1451. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1452. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1453. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  1454. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1455. PersonID string `protobuf:"bytes,5,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1456. }
  1457. func (x *FindChatRecordListRequest) Reset() {
  1458. *x = FindChatRecordListRequest{}
  1459. if protoimpl.UnsafeEnabled {
  1460. mi := &file_chat_proto_msgTypes[24]
  1461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1462. ms.StoreMessageInfo(mi)
  1463. }
  1464. }
  1465. func (x *FindChatRecordListRequest) String() string {
  1466. return protoimpl.X.MessageStringOf(x)
  1467. }
  1468. func (*FindChatRecordListRequest) ProtoMessage() {}
  1469. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  1470. mi := &file_chat_proto_msgTypes[24]
  1471. if protoimpl.UnsafeEnabled && x != nil {
  1472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1473. if ms.LoadMessageInfo() == nil {
  1474. ms.StoreMessageInfo(mi)
  1475. }
  1476. return ms
  1477. }
  1478. return mi.MessageOf(x)
  1479. }
  1480. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  1481. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  1482. return file_chat_proto_rawDescGZIP(), []int{24}
  1483. }
  1484. func (x *FindChatRecordListRequest) GetNextId() int64 {
  1485. if x != nil {
  1486. return x.NextId
  1487. }
  1488. return 0
  1489. }
  1490. func (x *FindChatRecordListRequest) GetOffset() int64 {
  1491. if x != nil {
  1492. return x.Offset
  1493. }
  1494. return 0
  1495. }
  1496. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  1497. if x != nil {
  1498. return x.RoomId
  1499. }
  1500. return 0
  1501. }
  1502. func (x *FindChatRecordListRequest) GetPersonType() string {
  1503. if x != nil {
  1504. return x.PersonType
  1505. }
  1506. return ""
  1507. }
  1508. func (x *FindChatRecordListRequest) GetPersonID() string {
  1509. if x != nil {
  1510. return x.PersonID
  1511. }
  1512. return ""
  1513. }
  1514. type WindowInfo struct {
  1515. state protoimpl.MessageState
  1516. sizeCache protoimpl.SizeCache
  1517. unknownFields protoimpl.UnknownFields
  1518. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  1519. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1520. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1521. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1522. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1523. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  1524. Reply []string `protobuf:"bytes,7,rep,name=reply,proto3" json:"reply"` // 快捷回复
  1525. }
  1526. func (x *WindowInfo) Reset() {
  1527. *x = WindowInfo{}
  1528. if protoimpl.UnsafeEnabled {
  1529. mi := &file_chat_proto_msgTypes[25]
  1530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1531. ms.StoreMessageInfo(mi)
  1532. }
  1533. }
  1534. func (x *WindowInfo) String() string {
  1535. return protoimpl.X.MessageStringOf(x)
  1536. }
  1537. func (*WindowInfo) ProtoMessage() {}
  1538. func (x *WindowInfo) ProtoReflect() protoreflect.Message {
  1539. mi := &file_chat_proto_msgTypes[25]
  1540. if protoimpl.UnsafeEnabled && x != nil {
  1541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1542. if ms.LoadMessageInfo() == nil {
  1543. ms.StoreMessageInfo(mi)
  1544. }
  1545. return ms
  1546. }
  1547. return mi.MessageOf(x)
  1548. }
  1549. // Deprecated: Use WindowInfo.ProtoReflect.Descriptor instead.
  1550. func (*WindowInfo) Descriptor() ([]byte, []int) {
  1551. return file_chat_proto_rawDescGZIP(), []int{25}
  1552. }
  1553. func (x *WindowInfo) GetContent() string {
  1554. if x != nil {
  1555. return x.Content
  1556. }
  1557. return ""
  1558. }
  1559. func (x *WindowInfo) GetRoomId() int64 {
  1560. if x != nil {
  1561. return x.RoomId
  1562. }
  1563. return 0
  1564. }
  1565. func (x *WindowInfo) GetAvatarUrl() string {
  1566. if x != nil {
  1567. return x.AvatarUrl
  1568. }
  1569. return ""
  1570. }
  1571. func (x *WindowInfo) GetNickname() string {
  1572. if x != nil {
  1573. return x.Nickname
  1574. }
  1575. return ""
  1576. }
  1577. func (x *WindowInfo) GetAge() int64 {
  1578. if x != nil {
  1579. return x.Age
  1580. }
  1581. return 0
  1582. }
  1583. func (x *WindowInfo) GetSex() int64 {
  1584. if x != nil {
  1585. return x.Sex
  1586. }
  1587. return 0
  1588. }
  1589. func (x *WindowInfo) GetReply() []string {
  1590. if x != nil {
  1591. return x.Reply
  1592. }
  1593. return nil
  1594. }
  1595. type ReminderInfo struct {
  1596. state protoimpl.MessageState
  1597. sizeCache protoimpl.SizeCache
  1598. unknownFields protoimpl.UnknownFields
  1599. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 发送条数
  1600. LimitNum int64 `protobuf:"varint,2,opt,name=limitNum,proto3" json:"limitNum"` // 上限条数
  1601. SendTime int64 `protobuf:"varint,3,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  1602. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1603. }
  1604. func (x *ReminderInfo) Reset() {
  1605. *x = ReminderInfo{}
  1606. if protoimpl.UnsafeEnabled {
  1607. mi := &file_chat_proto_msgTypes[26]
  1608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1609. ms.StoreMessageInfo(mi)
  1610. }
  1611. }
  1612. func (x *ReminderInfo) String() string {
  1613. return protoimpl.X.MessageStringOf(x)
  1614. }
  1615. func (*ReminderInfo) ProtoMessage() {}
  1616. func (x *ReminderInfo) ProtoReflect() protoreflect.Message {
  1617. mi := &file_chat_proto_msgTypes[26]
  1618. if protoimpl.UnsafeEnabled && x != nil {
  1619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1620. if ms.LoadMessageInfo() == nil {
  1621. ms.StoreMessageInfo(mi)
  1622. }
  1623. return ms
  1624. }
  1625. return mi.MessageOf(x)
  1626. }
  1627. // Deprecated: Use ReminderInfo.ProtoReflect.Descriptor instead.
  1628. func (*ReminderInfo) Descriptor() ([]byte, []int) {
  1629. return file_chat_proto_rawDescGZIP(), []int{26}
  1630. }
  1631. func (x *ReminderInfo) GetNum() int64 {
  1632. if x != nil {
  1633. return x.Num
  1634. }
  1635. return 0
  1636. }
  1637. func (x *ReminderInfo) GetLimitNum() int64 {
  1638. if x != nil {
  1639. return x.LimitNum
  1640. }
  1641. return 0
  1642. }
  1643. func (x *ReminderInfo) GetSendTime() int64 {
  1644. if x != nil {
  1645. return x.SendTime
  1646. }
  1647. return 0
  1648. }
  1649. func (x *ReminderInfo) GetRoomId() int64 {
  1650. if x != nil {
  1651. return x.RoomId
  1652. }
  1653. return 0
  1654. }
  1655. type ReminderUserInfo struct {
  1656. state protoimpl.MessageState
  1657. sizeCache protoimpl.SizeCache
  1658. unknownFields protoimpl.UnknownFields
  1659. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1660. }
  1661. func (x *ReminderUserInfo) Reset() {
  1662. *x = ReminderUserInfo{}
  1663. if protoimpl.UnsafeEnabled {
  1664. mi := &file_chat_proto_msgTypes[27]
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. ms.StoreMessageInfo(mi)
  1667. }
  1668. }
  1669. func (x *ReminderUserInfo) String() string {
  1670. return protoimpl.X.MessageStringOf(x)
  1671. }
  1672. func (*ReminderUserInfo) ProtoMessage() {}
  1673. func (x *ReminderUserInfo) ProtoReflect() protoreflect.Message {
  1674. mi := &file_chat_proto_msgTypes[27]
  1675. if protoimpl.UnsafeEnabled && x != nil {
  1676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1677. if ms.LoadMessageInfo() == nil {
  1678. ms.StoreMessageInfo(mi)
  1679. }
  1680. return ms
  1681. }
  1682. return mi.MessageOf(x)
  1683. }
  1684. // Deprecated: Use ReminderUserInfo.ProtoReflect.Descriptor instead.
  1685. func (*ReminderUserInfo) Descriptor() ([]byte, []int) {
  1686. return file_chat_proto_rawDescGZIP(), []int{27}
  1687. }
  1688. func (x *ReminderUserInfo) GetRoomId() int64 {
  1689. if x != nil {
  1690. return x.RoomId
  1691. }
  1692. return 0
  1693. }
  1694. var File_chat_proto protoreflect.FileDescriptor
  1695. var file_chat_proto_rawDesc = []byte{
  1696. 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1697. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
  1698. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72,
  1699. 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
  1700. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x97, 0x01, 0x0a,
  1701. 0x1d, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74,
  1702. 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10,
  1703. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  1704. 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1705. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e,
  1706. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64,
  1707. 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  1708. 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  1709. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1710. 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x22, 0x34, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
  1711. 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a,
  1712. 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1713. 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x87, 0x01, 0x0a,
  1714. 0x11, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65,
  1715. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  1716. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  1717. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  1718. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1719. 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73,
  1720. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
  1721. 0x66, 0x79, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e,
  1722. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x22, 0xb4, 0x01, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1723. 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75,
  1724. 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1725. 0x64, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74,
  1726. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  1727. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  1728. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  1729. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1730. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1731. 0x79, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74,
  1732. 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  1733. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x97, 0x01,
  1734. 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  1735. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52,
  1736. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63,
  1737. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  1738. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  1739. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1740. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72,
  1741. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74,
  1742. 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65,
  1743. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x22, 0xca, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x52,
  1744. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70,
  1745. 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01,
  1746. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e,
  1747. 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
  1748. 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16,
  1749. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1750. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1751. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1752. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  1753. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  1754. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  1755. 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  1756. 0x03, 0x61, 0x67, 0x65, 0x22, 0x54, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52,
  1757. 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09,
  1758. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1759. 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65,
  1760. 0x73, 0x73, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1761. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x9e, 0x01, 0x0a, 0x1e, 0x46,
  1762. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  1763. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  1764. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e,
  1765. 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  1766. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a,
  1767. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1768. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72,
  1769. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
  1770. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  1771. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x6e, 0x0a, 0x16, 0x46,
  1772. 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65,
  1773. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65,
  1774. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75,
  1775. 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x2c, 0x0a,
  1776. 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1777. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1778. 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x14, 0x50,
  1779. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65,
  1780. 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x01,
  1781. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x8c, 0x01,
  1782. 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  1783. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72,
  1784. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1785. 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  1786. 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1787. 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72,
  1788. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x1c,
  1789. 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1790. 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0xc0, 0x01, 0x0a,
  1791. 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  1792. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  1793. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  1794. 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
  1795. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x49,
  1796. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1797. 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x69,
  1798. 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x04, 0x20,
  1799. 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65,
  1800. 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53,
  1801. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69,
  1802. 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x22,
  1803. 0x95, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  1804. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  1805. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  1806. 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
  1807. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x49,
  1808. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1809. 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x69,
  1810. 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x18,
  1811. 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53,
  1812. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46,
  1813. 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1814. 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16,
  1815. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f,
  1816. 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1817. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  1818. 0x78, 0x74, 0x49, 0x64, 0x22, 0xe0, 0x01, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f,
  1819. 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  1820. 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1821. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1822. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1823. 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03,
  1824. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  1825. 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04,
  1826. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  1827. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20,
  1828. 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a,
  1829. 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01,
  1830. 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12,
  1831. 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  1832. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1833. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1834. 0x70, 0x6c, 0x79, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1835. 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72,
  1836. 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  1837. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  1838. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xa3, 0x03, 0x0a, 0x0f, 0x50,
  1839. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24,
  1840. 0x0a, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x18,
  1841. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e,
  1842. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1843. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1844. 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20,
  1845. 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20,
  1846. 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20,
  1847. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  1848. 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  1849. 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  1850. 0x62, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62,
  1851. 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07,
  1852. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1853. 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09,
  1854. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  1855. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  1856. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  1857. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20,
  1858. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65,
  1859. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c,
  1860. 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f,
  1861. 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1862. 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64,
  1863. 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x70,
  1864. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x65, 0x6e, 0x64, 0x42, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d,
  1865. 0x22, 0x89, 0x02, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  1866. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73,
  1867. 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72,
  1868. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x31, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1869. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x31, 0x18, 0x02, 0x20, 0x01, 0x28,
  1870. 0x09, 0x52, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1871. 0x79, 0x49, 0x44, 0x31, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  1872. 0x70, 0x65, 0x31, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1873. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x31, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1874. 0x49, 0x64, 0x32, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1875. 0x6e, 0x49, 0x64, 0x32, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1876. 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1877. 0x11, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  1878. 0x44, 0x32, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1879. 0x32, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  1880. 0x79, 0x70, 0x65, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x07,
  1881. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0x57, 0x0a, 0x11,
  1882. 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x50, 0x61, 0x72, 0x61,
  1883. 0x6d, 0x12, 0x2a, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1884. 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x70, 0x65, 0x72,
  1885. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x16, 0x0a,
  1886. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  1887. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
  1888. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68,
  1889. 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  1890. 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04,
  1891. 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1892. 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  1893. 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73,
  1894. 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73,
  1895. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65,
  1896. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  1897. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  1898. 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x0e, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52,
  1899. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x6f, 0x0a, 0x23, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65,
  1900. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69,
  1901. 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x13, 0x69,
  1902. 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  1903. 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x42, 0x75, 0x69, 0x6c,
  1904. 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x16, 0x0a,
  1905. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
  1906. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x23, 0x0a, 0x09, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70,
  1907. 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  1908. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x6c, 0x0a, 0x16, 0x46, 0x69,
  1909. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71,
  1910. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01,
  1911. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  1912. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1913. 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1914. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1915. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x9f, 0x01, 0x0a, 0x19, 0x46, 0x69, 0x6e,
  1916. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1917. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  1918. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16,
  1919. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1920. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  1921. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1e,
  1922. 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
  1923. 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a,
  1924. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1925. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0xb2, 0x01, 0x0a, 0x0a, 0x57,
  1926. 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
  1927. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74,
  1928. 0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20,
  1929. 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  1930. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1931. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  1932. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  1933. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01,
  1934. 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x06,
  1935. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x70,
  1936. 0x6c, 0x79, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1937. 0x70, 0x0a, 0x0c, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1938. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  1939. 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20,
  1940. 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  1941. 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1942. 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  1943. 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  1944. 0x64, 0x22, 0x2a, 0x0a, 0x10, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65,
  1945. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  1946. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x32, 0xd3, 0x14,
  1947. 0x0a, 0x04, 0x43, 0x68, 0x61, 0x74, 0x12, 0x7a, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55,
  1948. 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61,
  1949. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1950. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72,
  1951. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x50, 0x61,
  1952. 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43,
  1953. 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1954. 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70,
  1955. 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74,
  1956. 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  1957. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61,
  1958. 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52,
  1959. 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x62, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64,
  1960. 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  1961. 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  1962. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52,
  1963. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1964. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  1965. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x69, 0x0a, 0x17,
  1966. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  1967. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  1968. 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  1969. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1970. 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  1971. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  1972. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x61, 0x0a, 0x13, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1973. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24,
  1974. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1975. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  1976. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  1977. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1978. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x10, 0x55, 0x73,
  1979. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21,
  1980. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69,
  1981. 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1982. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65,
  1983. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1984. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x07, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x12,
  1985. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69,
  1986. 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1987. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x70, 0x6c,
  1988. 0x79, 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  1989. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1990. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  1991. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  1992. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  1993. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1994. 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  1995. 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  1996. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52,
  1997. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1998. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22,
  1999. 0x00, 0x12, 0x45, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61,
  2000. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x53, 0x65, 0x74,
  2001. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  2002. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2003. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65,
  2004. 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2005. 0x74, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x50, 0x61,
  2006. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2007. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a,
  2008. 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2009. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  2010. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2011. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0f,
  2012. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12,
  2013. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2014. 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2015. 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72,
  2016. 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2017. 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43,
  2018. 0x61, 0x72, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  2019. 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4d, 0x73,
  2020. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2021. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x68, 0x61, 0x74, 0x4d, 0x73,
  2022. 0x67, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65,
  2023. 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2024. 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x52, 0x65,
  2025. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2026. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d,
  2027. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74,
  2028. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2029. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2030. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2031. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x00, 0x12, 0x47, 0x0a,
  2032. 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61,
  2033. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  2034. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2035. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2036. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79,
  2037. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2038. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2039. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2040. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4d, 0x0a,
  2041. 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2042. 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  2043. 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  2044. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2045. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x12,
  2046. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2047. 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2048. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2049. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2050. 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x0f, 0x50, 0x65,
  2051. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x22, 0x2e,
  2052. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2053. 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2054. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2055. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x13, 0x50,
  2056. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61,
  2057. 0x63, 0x6b, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2058. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70,
  2059. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e,
  2060. 0x66, 0x6f, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65,
  2061. 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2062. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  2063. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2064. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  2065. 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64,
  2066. 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2067. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75,
  2068. 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57,
  2069. 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x47,
  2070. 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2071. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2072. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e,
  2073. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64,
  2074. 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2075. 0x00, 0x12, 0x6c, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2076. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x2e, 0x61, 0x70,
  2077. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2078. 0x6e, 0x67, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
  2079. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2080. 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x72,
  2081. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2082. 0x4e, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  2083. 0x74, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72,
  2084. 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65,
  2085. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2086. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2087. 0x51, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  2088. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  2089. 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  2090. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2091. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2092. 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x43, 0x6f,
  2093. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2094. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2095. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  2096. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  2097. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2098. 0x00, 0x12, 0x48, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56,
  2099. 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  2100. 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2101. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2102. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x11, 0x55,
  2103. 0x73, 0x65, 0x72, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  2104. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2105. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2106. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2107. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x52, 0x6f,
  2108. 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2109. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  2110. 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47,
  2111. 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2112. 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x50,
  2113. 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f,
  2114. 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74,
  2115. 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x3b, 0x63, 0x68,
  2116. 0x61, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2117. }
  2118. var (
  2119. file_chat_proto_rawDescOnce sync.Once
  2120. file_chat_proto_rawDescData = file_chat_proto_rawDesc
  2121. )
  2122. func file_chat_proto_rawDescGZIP() []byte {
  2123. file_chat_proto_rawDescOnce.Do(func() {
  2124. file_chat_proto_rawDescData = protoimpl.X.CompressGZIP(file_chat_proto_rawDescData)
  2125. })
  2126. return file_chat_proto_rawDescData
  2127. }
  2128. var file_chat_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
  2129. var file_chat_proto_goTypes = []interface{}{
  2130. (*GetMatchingPartnerInfoRequest)(nil), // 0: api.chat.GetMatchingPartnerInfoRequest
  2131. (*GetRoomProfitReply)(nil), // 1: api.chat.GetRoomProfitReply
  2132. (*UserUnlockRequest)(nil), // 2: api.chat.UserUnlockRequest
  2133. (*PartnerCollectIDsRequest)(nil), // 3: api.chat.PartnerCollectIDsRequest
  2134. (*PartnerCollectRequest)(nil), // 4: api.chat.PartnerCollectRequest
  2135. (*GetRandomMatchingReply)(nil), // 5: api.chat.GetRandomMatchingReply
  2136. (*FindNotReplyNumReply)(nil), // 6: api.chat.FindNotReplyNumReply
  2137. (*FindRecommendPersonListRequest)(nil), // 7: api.chat.FindRecommendPersonListRequest
  2138. (*FindRoomCardMsgRequest)(nil), // 8: api.chat.FindRoomCardMsgRequest
  2139. (*PartnerGetAwardReply)(nil), // 9: api.chat.PartnerGetAwardReply
  2140. (*PartnerGetAwardRequest)(nil), // 10: api.chat.PartnerGetAwardRequest
  2141. (*PartnerFindRoomListRequest)(nil), // 11: api.chat.PartnerFindRoomListRequest
  2142. (*UserFindRoomListRequest)(nil), // 12: api.chat.UserFindRoomListRequest
  2143. (*UserFindRoomListReply)(nil), // 13: api.chat.UserFindRoomListReply
  2144. (*UserRoomInfo)(nil), // 14: api.chat.UserRoomInfo
  2145. (*PartnerFindRoomListReply)(nil), // 15: api.chat.PartnerFindRoomListReply
  2146. (*PartnerRoomInfo)(nil), // 16: api.chat.PartnerRoomInfo
  2147. (*CreateChatRoomParam)(nil), // 17: api.chat.CreateChatRoomParam
  2148. (*SetBlackChatParam)(nil), // 18: api.chat.SetBlackChatParam
  2149. (*ReceiveRequest)(nil), // 19: api.chat.ReceiveRequest
  2150. (*ReceiveReply)(nil), // 20: api.chat.ReceiveReply
  2151. (*CheckUserPartnerIsRelationshipReply)(nil), // 21: api.chat.CheckUserPartnerIsRelationshipReply
  2152. (*RoomReply)(nil), // 22: api.chat.RoomReply
  2153. (*FindChatRoomMsgRequest)(nil), // 23: api.chat.FindChatRoomMsgRequest
  2154. (*FindChatRecordListRequest)(nil), // 24: api.chat.FindChatRecordListRequest
  2155. (*WindowInfo)(nil), // 25: api.chat.WindowInfo
  2156. (*ReminderInfo)(nil), // 26: api.chat.ReminderInfo
  2157. (*ReminderUserInfo)(nil), // 27: api.chat.ReminderUserInfo
  2158. (*common.UserAndPartnerIdentifyIdParam)(nil), // 28: api.common.UserAndPartnerIdentifyIdParam
  2159. (*common.ListPageAndPersonRequest)(nil), // 29: api.common.ListPageAndPersonRequest
  2160. (*common.ReportRequest)(nil), // 30: api.common.ReportRequest
  2161. (*common.IdentifyIdRequest)(nil), // 31: api.common.IdentifyIdRequest
  2162. (*common.CreateScripRequest)(nil), // 32: api.common.CreateScripRequest
  2163. (*common.DeleteScripRequest)(nil), // 33: api.common.DeleteScripRequest
  2164. (*common.FindScripRequest)(nil), // 34: api.common.FindScripRequest
  2165. (*common.FindOtherScripRequest)(nil), // 35: api.common.FindOtherScripRequest
  2166. (*common.PersonLookScripRequest)(nil), // 36: api.common.PersonLookScripRequest
  2167. (*common.PersonParam)(nil), // 37: api.common.PersonParam
  2168. (*common.ReplyScripRequest)(nil), // 38: api.common.ReplyScripRequest
  2169. (*common.MatchingRequest)(nil), // 39: api.common.MatchingRequest
  2170. (*common.RoomIDRequest)(nil), // 40: api.common.RoomIDRequest
  2171. (*common.RecommendPersonListReply)(nil), // 41: api.common.RecommendPersonListReply
  2172. (*common.ChatRecordListReply)(nil), // 42: api.common.ChatRecordListReply
  2173. (*common.ChatRoomMsg)(nil), // 43: api.common.ChatRoomMsg
  2174. (*emptypb.Empty)(nil), // 44: google.protobuf.Empty
  2175. (*common.RoomChatMsg)(nil), // 45: api.common.RoomChatMsg
  2176. (*common.ScripID)(nil), // 46: api.common.ScripID
  2177. (*common.ScripReply)(nil), // 47: api.common.ScripReply
  2178. (*common.ScripInfo)(nil), // 48: api.common.ScripInfo
  2179. (*common.ChatRecordInfo)(nil), // 49: api.common.ChatRecordInfo
  2180. (*common.GetMatchingPartnerInfoReply)(nil), // 50: api.common.GetMatchingPartnerInfoReply
  2181. }
  2182. var file_chat_proto_depIdxs = []int32{
  2183. 14, // 0: api.chat.UserFindRoomListReply.list:type_name -> api.chat.UserRoomInfo
  2184. 16, // 1: api.chat.PartnerFindRoomListReply.list:type_name -> api.chat.PartnerRoomInfo
  2185. 28, // 2: api.chat.Chat.CheckUserPartnerIsRelationship:input_type -> api.common.UserAndPartnerIdentifyIdParam
  2186. 17, // 3: api.chat.Chat.CreateChatRoom:input_type -> api.chat.CreateChatRoomParam
  2187. 29, // 4: api.chat.Chat.FindOnlinePersonList:input_type -> api.common.ListPageAndPersonRequest
  2188. 7, // 5: api.chat.Chat.FindRecommendPersonList:input_type -> api.chat.FindRecommendPersonListRequest
  2189. 11, // 6: api.chat.Chat.PartnerFindRoomList:input_type -> api.chat.PartnerFindRoomListRequest
  2190. 12, // 7: api.chat.Chat.UserFindRoomList:input_type -> api.chat.UserFindRoomListRequest
  2191. 19, // 8: api.chat.Chat.Receive:input_type -> api.chat.ReceiveRequest
  2192. 24, // 9: api.chat.Chat.FindChatRecordList:input_type -> api.chat.FindChatRecordListRequest
  2193. 23, // 10: api.chat.Chat.FindChatRoomMsg:input_type -> api.chat.FindChatRoomMsgRequest
  2194. 18, // 11: api.chat.Chat.SetBlackChat:input_type -> api.chat.SetBlackChatParam
  2195. 18, // 12: api.chat.Chat.DeleteChat:input_type -> api.chat.SetBlackChatParam
  2196. 30, // 13: api.chat.Chat.Report:input_type -> api.common.ReportRequest
  2197. 10, // 14: api.chat.Chat.PartnerGetAward:input_type -> api.chat.PartnerGetAwardRequest
  2198. 8, // 15: api.chat.Chat.FindRoomCardMsg:input_type -> api.chat.FindRoomCardMsgRequest
  2199. 31, // 16: api.chat.Chat.FindNotReplyNum:input_type -> api.common.IdentifyIdRequest
  2200. 32, // 17: api.chat.Chat.CreateScrip:input_type -> api.common.CreateScripRequest
  2201. 33, // 18: api.chat.Chat.DeleteScrip:input_type -> api.common.DeleteScripRequest
  2202. 34, // 19: api.chat.Chat.FindMyScrip:input_type -> api.common.FindScripRequest
  2203. 35, // 20: api.chat.Chat.FindOtherScrip:input_type -> api.common.FindOtherScripRequest
  2204. 34, // 21: api.chat.Chat.FindRecommendScrip:input_type -> api.common.FindScripRequest
  2205. 36, // 22: api.chat.Chat.PersonLookScrip:input_type -> api.common.PersonLookScripRequest
  2206. 37, // 23: api.chat.Chat.PersonClickLookBack:input_type -> api.common.PersonParam
  2207. 38, // 24: api.chat.Chat.PersonReplyScrip:input_type -> api.common.ReplyScripRequest
  2208. 39, // 25: api.chat.Chat.GetWindowInfo:input_type -> api.common.MatchingRequest
  2209. 39, // 26: api.chat.Chat.GetRandomMatching:input_type -> api.common.MatchingRequest
  2210. 0, // 27: api.chat.Chat.GetMatchingPartnerInfo:input_type -> api.chat.GetMatchingPartnerInfoRequest
  2211. 3, // 28: api.chat.Chat.PartnerCollect:input_type -> api.chat.PartnerCollectIDsRequest
  2212. 4, // 29: api.chat.Chat.PartnerDeleteCollect:input_type -> api.chat.PartnerCollectRequest
  2213. 24, // 30: api.chat.Chat.FindChatCollectList:input_type -> api.chat.FindChatRecordListRequest
  2214. 2, // 31: api.chat.Chat.UserUnlockVoice:input_type -> api.chat.UserUnlockRequest
  2215. 2, // 32: api.chat.Chat.UserUnlockPicture:input_type -> api.chat.UserUnlockRequest
  2216. 40, // 33: api.chat.Chat.GetRoomProfit:input_type -> api.common.RoomIDRequest
  2217. 21, // 34: api.chat.Chat.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2218. 22, // 35: api.chat.Chat.CreateChatRoom:output_type -> api.chat.RoomReply
  2219. 41, // 36: api.chat.Chat.FindOnlinePersonList:output_type -> api.common.RecommendPersonListReply
  2220. 41, // 37: api.chat.Chat.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2221. 15, // 38: api.chat.Chat.PartnerFindRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2222. 13, // 39: api.chat.Chat.UserFindRoomList:output_type -> api.chat.UserFindRoomListReply
  2223. 20, // 40: api.chat.Chat.Receive:output_type -> api.chat.ReceiveReply
  2224. 42, // 41: api.chat.Chat.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2225. 43, // 42: api.chat.Chat.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2226. 44, // 43: api.chat.Chat.SetBlackChat:output_type -> google.protobuf.Empty
  2227. 44, // 44: api.chat.Chat.DeleteChat:output_type -> google.protobuf.Empty
  2228. 44, // 45: api.chat.Chat.Report:output_type -> google.protobuf.Empty
  2229. 9, // 46: api.chat.Chat.PartnerGetAward:output_type -> api.chat.PartnerGetAwardReply
  2230. 45, // 47: api.chat.Chat.FindRoomCardMsg:output_type -> api.common.RoomChatMsg
  2231. 6, // 48: api.chat.Chat.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  2232. 46, // 49: api.chat.Chat.CreateScrip:output_type -> api.common.ScripID
  2233. 44, // 50: api.chat.Chat.DeleteScrip:output_type -> google.protobuf.Empty
  2234. 47, // 51: api.chat.Chat.FindMyScrip:output_type -> api.common.ScripReply
  2235. 47, // 52: api.chat.Chat.FindOtherScrip:output_type -> api.common.ScripReply
  2236. 47, // 53: api.chat.Chat.FindRecommendScrip:output_type -> api.common.ScripReply
  2237. 44, // 54: api.chat.Chat.PersonLookScrip:output_type -> google.protobuf.Empty
  2238. 48, // 55: api.chat.Chat.PersonClickLookBack:output_type -> api.common.ScripInfo
  2239. 49, // 56: api.chat.Chat.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2240. 25, // 57: api.chat.Chat.GetWindowInfo:output_type -> api.chat.WindowInfo
  2241. 5, // 58: api.chat.Chat.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2242. 50, // 59: api.chat.Chat.GetMatchingPartnerInfo:output_type -> api.common.GetMatchingPartnerInfoReply
  2243. 44, // 60: api.chat.Chat.PartnerCollect:output_type -> google.protobuf.Empty
  2244. 44, // 61: api.chat.Chat.PartnerDeleteCollect:output_type -> google.protobuf.Empty
  2245. 42, // 62: api.chat.Chat.FindChatCollectList:output_type -> api.common.ChatRecordListReply
  2246. 44, // 63: api.chat.Chat.UserUnlockVoice:output_type -> google.protobuf.Empty
  2247. 44, // 64: api.chat.Chat.UserUnlockPicture:output_type -> google.protobuf.Empty
  2248. 1, // 65: api.chat.Chat.GetRoomProfit:output_type -> api.chat.GetRoomProfitReply
  2249. 34, // [34:66] is the sub-list for method output_type
  2250. 2, // [2:34] is the sub-list for method input_type
  2251. 2, // [2:2] is the sub-list for extension type_name
  2252. 2, // [2:2] is the sub-list for extension extendee
  2253. 0, // [0:2] is the sub-list for field type_name
  2254. }
  2255. func init() { file_chat_proto_init() }
  2256. func file_chat_proto_init() {
  2257. if File_chat_proto != nil {
  2258. return
  2259. }
  2260. if !protoimpl.UnsafeEnabled {
  2261. file_chat_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2262. switch v := v.(*GetMatchingPartnerInfoRequest); i {
  2263. case 0:
  2264. return &v.state
  2265. case 1:
  2266. return &v.sizeCache
  2267. case 2:
  2268. return &v.unknownFields
  2269. default:
  2270. return nil
  2271. }
  2272. }
  2273. file_chat_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2274. switch v := v.(*GetRoomProfitReply); i {
  2275. case 0:
  2276. return &v.state
  2277. case 1:
  2278. return &v.sizeCache
  2279. case 2:
  2280. return &v.unknownFields
  2281. default:
  2282. return nil
  2283. }
  2284. }
  2285. file_chat_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2286. switch v := v.(*UserUnlockRequest); i {
  2287. case 0:
  2288. return &v.state
  2289. case 1:
  2290. return &v.sizeCache
  2291. case 2:
  2292. return &v.unknownFields
  2293. default:
  2294. return nil
  2295. }
  2296. }
  2297. file_chat_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2298. switch v := v.(*PartnerCollectIDsRequest); i {
  2299. case 0:
  2300. return &v.state
  2301. case 1:
  2302. return &v.sizeCache
  2303. case 2:
  2304. return &v.unknownFields
  2305. default:
  2306. return nil
  2307. }
  2308. }
  2309. file_chat_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2310. switch v := v.(*PartnerCollectRequest); i {
  2311. case 0:
  2312. return &v.state
  2313. case 1:
  2314. return &v.sizeCache
  2315. case 2:
  2316. return &v.unknownFields
  2317. default:
  2318. return nil
  2319. }
  2320. }
  2321. file_chat_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2322. switch v := v.(*GetRandomMatchingReply); i {
  2323. case 0:
  2324. return &v.state
  2325. case 1:
  2326. return &v.sizeCache
  2327. case 2:
  2328. return &v.unknownFields
  2329. default:
  2330. return nil
  2331. }
  2332. }
  2333. file_chat_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2334. switch v := v.(*FindNotReplyNumReply); i {
  2335. case 0:
  2336. return &v.state
  2337. case 1:
  2338. return &v.sizeCache
  2339. case 2:
  2340. return &v.unknownFields
  2341. default:
  2342. return nil
  2343. }
  2344. }
  2345. file_chat_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2346. switch v := v.(*FindRecommendPersonListRequest); i {
  2347. case 0:
  2348. return &v.state
  2349. case 1:
  2350. return &v.sizeCache
  2351. case 2:
  2352. return &v.unknownFields
  2353. default:
  2354. return nil
  2355. }
  2356. }
  2357. file_chat_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2358. switch v := v.(*FindRoomCardMsgRequest); i {
  2359. case 0:
  2360. return &v.state
  2361. case 1:
  2362. return &v.sizeCache
  2363. case 2:
  2364. return &v.unknownFields
  2365. default:
  2366. return nil
  2367. }
  2368. }
  2369. file_chat_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2370. switch v := v.(*PartnerGetAwardReply); i {
  2371. case 0:
  2372. return &v.state
  2373. case 1:
  2374. return &v.sizeCache
  2375. case 2:
  2376. return &v.unknownFields
  2377. default:
  2378. return nil
  2379. }
  2380. }
  2381. file_chat_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2382. switch v := v.(*PartnerGetAwardRequest); i {
  2383. case 0:
  2384. return &v.state
  2385. case 1:
  2386. return &v.sizeCache
  2387. case 2:
  2388. return &v.unknownFields
  2389. default:
  2390. return nil
  2391. }
  2392. }
  2393. file_chat_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2394. switch v := v.(*PartnerFindRoomListRequest); i {
  2395. case 0:
  2396. return &v.state
  2397. case 1:
  2398. return &v.sizeCache
  2399. case 2:
  2400. return &v.unknownFields
  2401. default:
  2402. return nil
  2403. }
  2404. }
  2405. file_chat_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2406. switch v := v.(*UserFindRoomListRequest); i {
  2407. case 0:
  2408. return &v.state
  2409. case 1:
  2410. return &v.sizeCache
  2411. case 2:
  2412. return &v.unknownFields
  2413. default:
  2414. return nil
  2415. }
  2416. }
  2417. file_chat_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2418. switch v := v.(*UserFindRoomListReply); i {
  2419. case 0:
  2420. return &v.state
  2421. case 1:
  2422. return &v.sizeCache
  2423. case 2:
  2424. return &v.unknownFields
  2425. default:
  2426. return nil
  2427. }
  2428. }
  2429. file_chat_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2430. switch v := v.(*UserRoomInfo); i {
  2431. case 0:
  2432. return &v.state
  2433. case 1:
  2434. return &v.sizeCache
  2435. case 2:
  2436. return &v.unknownFields
  2437. default:
  2438. return nil
  2439. }
  2440. }
  2441. file_chat_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2442. switch v := v.(*PartnerFindRoomListReply); i {
  2443. case 0:
  2444. return &v.state
  2445. case 1:
  2446. return &v.sizeCache
  2447. case 2:
  2448. return &v.unknownFields
  2449. default:
  2450. return nil
  2451. }
  2452. }
  2453. file_chat_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2454. switch v := v.(*PartnerRoomInfo); i {
  2455. case 0:
  2456. return &v.state
  2457. case 1:
  2458. return &v.sizeCache
  2459. case 2:
  2460. return &v.unknownFields
  2461. default:
  2462. return nil
  2463. }
  2464. }
  2465. file_chat_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2466. switch v := v.(*CreateChatRoomParam); i {
  2467. case 0:
  2468. return &v.state
  2469. case 1:
  2470. return &v.sizeCache
  2471. case 2:
  2472. return &v.unknownFields
  2473. default:
  2474. return nil
  2475. }
  2476. }
  2477. file_chat_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2478. switch v := v.(*SetBlackChatParam); i {
  2479. case 0:
  2480. return &v.state
  2481. case 1:
  2482. return &v.sizeCache
  2483. case 2:
  2484. return &v.unknownFields
  2485. default:
  2486. return nil
  2487. }
  2488. }
  2489. file_chat_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2490. switch v := v.(*ReceiveRequest); i {
  2491. case 0:
  2492. return &v.state
  2493. case 1:
  2494. return &v.sizeCache
  2495. case 2:
  2496. return &v.unknownFields
  2497. default:
  2498. return nil
  2499. }
  2500. }
  2501. file_chat_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2502. switch v := v.(*ReceiveReply); i {
  2503. case 0:
  2504. return &v.state
  2505. case 1:
  2506. return &v.sizeCache
  2507. case 2:
  2508. return &v.unknownFields
  2509. default:
  2510. return nil
  2511. }
  2512. }
  2513. file_chat_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2514. switch v := v.(*CheckUserPartnerIsRelationshipReply); i {
  2515. case 0:
  2516. return &v.state
  2517. case 1:
  2518. return &v.sizeCache
  2519. case 2:
  2520. return &v.unknownFields
  2521. default:
  2522. return nil
  2523. }
  2524. }
  2525. file_chat_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2526. switch v := v.(*RoomReply); i {
  2527. case 0:
  2528. return &v.state
  2529. case 1:
  2530. return &v.sizeCache
  2531. case 2:
  2532. return &v.unknownFields
  2533. default:
  2534. return nil
  2535. }
  2536. }
  2537. file_chat_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2538. switch v := v.(*FindChatRoomMsgRequest); i {
  2539. case 0:
  2540. return &v.state
  2541. case 1:
  2542. return &v.sizeCache
  2543. case 2:
  2544. return &v.unknownFields
  2545. default:
  2546. return nil
  2547. }
  2548. }
  2549. file_chat_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2550. switch v := v.(*FindChatRecordListRequest); i {
  2551. case 0:
  2552. return &v.state
  2553. case 1:
  2554. return &v.sizeCache
  2555. case 2:
  2556. return &v.unknownFields
  2557. default:
  2558. return nil
  2559. }
  2560. }
  2561. file_chat_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2562. switch v := v.(*WindowInfo); i {
  2563. case 0:
  2564. return &v.state
  2565. case 1:
  2566. return &v.sizeCache
  2567. case 2:
  2568. return &v.unknownFields
  2569. default:
  2570. return nil
  2571. }
  2572. }
  2573. file_chat_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2574. switch v := v.(*ReminderInfo); i {
  2575. case 0:
  2576. return &v.state
  2577. case 1:
  2578. return &v.sizeCache
  2579. case 2:
  2580. return &v.unknownFields
  2581. default:
  2582. return nil
  2583. }
  2584. }
  2585. file_chat_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2586. switch v := v.(*ReminderUserInfo); i {
  2587. case 0:
  2588. return &v.state
  2589. case 1:
  2590. return &v.sizeCache
  2591. case 2:
  2592. return &v.unknownFields
  2593. default:
  2594. return nil
  2595. }
  2596. }
  2597. }
  2598. type x struct{}
  2599. out := protoimpl.TypeBuilder{
  2600. File: protoimpl.DescBuilder{
  2601. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2602. RawDescriptor: file_chat_proto_rawDesc,
  2603. NumEnums: 0,
  2604. NumMessages: 28,
  2605. NumExtensions: 0,
  2606. NumServices: 1,
  2607. },
  2608. GoTypes: file_chat_proto_goTypes,
  2609. DependencyIndexes: file_chat_proto_depIdxs,
  2610. MessageInfos: file_chat_proto_msgTypes,
  2611. }.Build()
  2612. File_chat_proto = out.File
  2613. file_chat_proto_rawDesc = nil
  2614. file_chat_proto_goTypes = nil
  2615. file_chat_proto_depIdxs = nil
  2616. }