chat.pb.go 106 KB

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