chat.pb.go 119 KB

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