chat.pb.go 118 KB

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