partner.pb.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: partner.proto
  6. package partner
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  10. _ "google.golang.org/genproto/googleapis/api/annotations"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. emptypb "google.golang.org/protobuf/types/known/emptypb"
  14. reflect "reflect"
  15. sync "sync"
  16. )
  17. const (
  18. // Verify that this generated code is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  20. // Verify that runtime/protoimpl is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  22. )
  23. type UpdatePartnerInformationRequest struct {
  24. state protoimpl.MessageState
  25. sizeCache protoimpl.SizeCache
  26. unknownFields protoimpl.UnknownFields
  27. Nickname string `protobuf:"bytes,1,opt,name=Nickname,proto3" json:"Nickname"` // 昵称
  28. AvatarUrl string `protobuf:"bytes,2,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  29. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  30. }
  31. func (x *UpdatePartnerInformationRequest) Reset() {
  32. *x = UpdatePartnerInformationRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_partner_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *UpdatePartnerInformationRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*UpdatePartnerInformationRequest) ProtoMessage() {}
  43. func (x *UpdatePartnerInformationRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_partner_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use UpdatePartnerInformationRequest.ProtoReflect.Descriptor instead.
  55. func (*UpdatePartnerInformationRequest) Descriptor() ([]byte, []int) {
  56. return file_partner_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *UpdatePartnerInformationRequest) GetNickname() string {
  59. if x != nil {
  60. return x.Nickname
  61. }
  62. return ""
  63. }
  64. func (x *UpdatePartnerInformationRequest) GetAvatarUrl() string {
  65. if x != nil {
  66. return x.AvatarUrl
  67. }
  68. return ""
  69. }
  70. func (x *UpdatePartnerInformationRequest) GetSex() int64 {
  71. if x != nil {
  72. return x.Sex
  73. }
  74. return 0
  75. }
  76. type PartnerInfo struct {
  77. state protoimpl.MessageState
  78. sizeCache protoimpl.SizeCache
  79. unknownFields protoimpl.UnknownFields
  80. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  81. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  82. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  83. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  84. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  85. LookNum int64 `protobuf:"varint,6,opt,name=lookNum,proto3" json:"lookNum"` // 看过我
  86. LookUnreadNum int64 `protobuf:"varint,7,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 看过我的未读数
  87. Level int64 `protobuf:"varint,8,opt,name=level,proto3" json:"level"` // 等级
  88. Balance int64 `protobuf:"varint,9,opt,name=balance,proto3" json:"balance"` // 可提现余额
  89. TodayProfit int64 `protobuf:"varint,10,opt,name=todayProfit,proto3" json:"todayProfit"` // 进入收益
  90. TodayReceptionNum int64 `protobuf:"varint,11,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  91. ReversionRate string `protobuf:"bytes,12,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  92. }
  93. func (x *PartnerInfo) Reset() {
  94. *x = PartnerInfo{}
  95. if protoimpl.UnsafeEnabled {
  96. mi := &file_partner_proto_msgTypes[1]
  97. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  98. ms.StoreMessageInfo(mi)
  99. }
  100. }
  101. func (x *PartnerInfo) String() string {
  102. return protoimpl.X.MessageStringOf(x)
  103. }
  104. func (*PartnerInfo) ProtoMessage() {}
  105. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  106. mi := &file_partner_proto_msgTypes[1]
  107. if protoimpl.UnsafeEnabled && x != nil {
  108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  109. if ms.LoadMessageInfo() == nil {
  110. ms.StoreMessageInfo(mi)
  111. }
  112. return ms
  113. }
  114. return mi.MessageOf(x)
  115. }
  116. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  117. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  118. return file_partner_proto_rawDescGZIP(), []int{1}
  119. }
  120. func (x *PartnerInfo) GetId() string {
  121. if x != nil {
  122. return x.Id
  123. }
  124. return ""
  125. }
  126. func (x *PartnerInfo) GetNickname() string {
  127. if x != nil {
  128. return x.Nickname
  129. }
  130. return ""
  131. }
  132. func (x *PartnerInfo) GetAvatarUrl() string {
  133. if x != nil {
  134. return x.AvatarUrl
  135. }
  136. return ""
  137. }
  138. func (x *PartnerInfo) GetAge() int64 {
  139. if x != nil {
  140. return x.Age
  141. }
  142. return 0
  143. }
  144. func (x *PartnerInfo) GetSex() int64 {
  145. if x != nil {
  146. return x.Sex
  147. }
  148. return 0
  149. }
  150. func (x *PartnerInfo) GetLookNum() int64 {
  151. if x != nil {
  152. return x.LookNum
  153. }
  154. return 0
  155. }
  156. func (x *PartnerInfo) GetLookUnreadNum() int64 {
  157. if x != nil {
  158. return x.LookUnreadNum
  159. }
  160. return 0
  161. }
  162. func (x *PartnerInfo) GetLevel() int64 {
  163. if x != nil {
  164. return x.Level
  165. }
  166. return 0
  167. }
  168. func (x *PartnerInfo) GetBalance() int64 {
  169. if x != nil {
  170. return x.Balance
  171. }
  172. return 0
  173. }
  174. func (x *PartnerInfo) GetTodayProfit() int64 {
  175. if x != nil {
  176. return x.TodayProfit
  177. }
  178. return 0
  179. }
  180. func (x *PartnerInfo) GetTodayReceptionNum() int64 {
  181. if x != nil {
  182. return x.TodayReceptionNum
  183. }
  184. return 0
  185. }
  186. func (x *PartnerInfo) GetReversionRate() string {
  187. if x != nil {
  188. return x.ReversionRate
  189. }
  190. return ""
  191. }
  192. type RandomPartnerInfo struct {
  193. state protoimpl.MessageState
  194. sizeCache protoimpl.SizeCache
  195. unknownFields protoimpl.UnknownFields
  196. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  197. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  198. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  199. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  200. }
  201. func (x *RandomPartnerInfo) Reset() {
  202. *x = RandomPartnerInfo{}
  203. if protoimpl.UnsafeEnabled {
  204. mi := &file_partner_proto_msgTypes[2]
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. ms.StoreMessageInfo(mi)
  207. }
  208. }
  209. func (x *RandomPartnerInfo) String() string {
  210. return protoimpl.X.MessageStringOf(x)
  211. }
  212. func (*RandomPartnerInfo) ProtoMessage() {}
  213. func (x *RandomPartnerInfo) ProtoReflect() protoreflect.Message {
  214. mi := &file_partner_proto_msgTypes[2]
  215. if protoimpl.UnsafeEnabled && x != nil {
  216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  217. if ms.LoadMessageInfo() == nil {
  218. ms.StoreMessageInfo(mi)
  219. }
  220. return ms
  221. }
  222. return mi.MessageOf(x)
  223. }
  224. // Deprecated: Use RandomPartnerInfo.ProtoReflect.Descriptor instead.
  225. func (*RandomPartnerInfo) Descriptor() ([]byte, []int) {
  226. return file_partner_proto_rawDescGZIP(), []int{2}
  227. }
  228. func (x *RandomPartnerInfo) GetId() string {
  229. if x != nil {
  230. return x.Id
  231. }
  232. return ""
  233. }
  234. func (x *RandomPartnerInfo) GetNickname() string {
  235. if x != nil {
  236. return x.Nickname
  237. }
  238. return ""
  239. }
  240. func (x *RandomPartnerInfo) GetAvatarUrl() string {
  241. if x != nil {
  242. return x.AvatarUrl
  243. }
  244. return ""
  245. }
  246. func (x *RandomPartnerInfo) GetSex() int64 {
  247. if x != nil {
  248. return x.Sex
  249. }
  250. return 0
  251. }
  252. type GetRandomPartnerRequest struct {
  253. state protoimpl.MessageState
  254. sizeCache protoimpl.SizeCache
  255. unknownFields protoimpl.UnknownFields
  256. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"` // 性别
  257. }
  258. func (x *GetRandomPartnerRequest) Reset() {
  259. *x = GetRandomPartnerRequest{}
  260. if protoimpl.UnsafeEnabled {
  261. mi := &file_partner_proto_msgTypes[3]
  262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  263. ms.StoreMessageInfo(mi)
  264. }
  265. }
  266. func (x *GetRandomPartnerRequest) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*GetRandomPartnerRequest) ProtoMessage() {}
  270. func (x *GetRandomPartnerRequest) ProtoReflect() protoreflect.Message {
  271. mi := &file_partner_proto_msgTypes[3]
  272. if protoimpl.UnsafeEnabled && x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use GetRandomPartnerRequest.ProtoReflect.Descriptor instead.
  282. func (*GetRandomPartnerRequest) Descriptor() ([]byte, []int) {
  283. return file_partner_proto_rawDescGZIP(), []int{3}
  284. }
  285. func (x *GetRandomPartnerRequest) GetSex() int64 {
  286. if x != nil {
  287. return x.Sex
  288. }
  289. return 0
  290. }
  291. var File_partner_proto protoreflect.FileDescriptor
  292. var file_partner_proto_rawDesc = []byte{
  293. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  294. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  295. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  296. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  297. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  298. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  299. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  300. 0x1a, 0x1f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  301. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  302. 0x6f, 0x22, 0x6d, 0x0a, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e,
  303. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
  304. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  305. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  306. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20,
  307. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10,
  308. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  309. 0x22, 0xe1, 0x02, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  310. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  311. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  312. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  313. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  314. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  315. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03,
  316. 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x18,
  317. 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  318. 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b,
  319. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  320. 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x14,
  321. 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c,
  322. 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18,
  323. 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20,
  324. 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x0a, 0x20,
  325. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74,
  326. 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69,
  327. 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64,
  328. 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24,
  329. 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18,
  330. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  331. 0x52, 0x61, 0x74, 0x65, 0x22, 0x6f, 0x0a, 0x11, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61,
  332. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  333. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  334. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  335. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  336. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  337. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  338. 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x2b, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64,
  339. 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  340. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  341. 0x65, 0x78, 0x32, 0x86, 0x0a, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x60,
  342. 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  343. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  344. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  345. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e,
  346. 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69,
  347. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a,
  348. 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x6f,
  349. 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  350. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e,
  351. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c,
  352. 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  353. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  354. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01,
  355. 0x2a, 0x12, 0x6c, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  356. 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  357. 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
  358. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  359. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3,
  360. 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  361. 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  362. 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  363. 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  364. 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
  365. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  366. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3,
  367. 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  368. 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  369. 0x12, 0x54, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69,
  370. 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  371. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50,
  372. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  373. 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  374. 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74,
  375. 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  376. 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  377. 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  378. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  379. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  380. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  381. 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  382. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  383. 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64,
  384. 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e,
  385. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52,
  386. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  387. 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  388. 0x72, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  389. 0x6e, 0x66, 0x6f, 0x12, 0x61, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65,
  390. 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  391. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  392. 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  393. 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16,
  394. 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x68,
  395. 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f,
  396. 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  397. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  398. 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  399. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  400. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  401. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  402. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x48, 0x0a, 0x11,
  403. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73,
  404. 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  405. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70,
  406. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44,
  407. 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66,
  408. 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78,
  409. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  410. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f,
  411. 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  412. 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
  413. 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67,
  414. 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x41,
  415. 0x6e, 0x64, 0x53, 0x65, 0x78, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  416. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79,
  417. 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a,
  418. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67,
  419. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  420. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  421. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x42, 0x46, 0x0a, 0x0b, 0x61,
  422. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69,
  423. 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72,
  424. 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  425. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72, 0x74,
  426. 0x6e, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  427. }
  428. var (
  429. file_partner_proto_rawDescOnce sync.Once
  430. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  431. )
  432. func file_partner_proto_rawDescGZIP() []byte {
  433. file_partner_proto_rawDescOnce.Do(func() {
  434. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  435. })
  436. return file_partner_proto_rawDescData
  437. }
  438. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  439. var file_partner_proto_goTypes = []interface{}{
  440. (*UpdatePartnerInformationRequest)(nil), // 0: api.partner.UpdatePartnerInformationRequest
  441. (*PartnerInfo)(nil), // 1: api.partner.PartnerInfo
  442. (*RandomPartnerInfo)(nil), // 2: api.partner.RandomPartnerInfo
  443. (*GetRandomPartnerRequest)(nil), // 3: api.partner.GetRandomPartnerRequest
  444. (*emptypb.Empty)(nil), // 4: google.protobuf.Empty
  445. (*common.SendPhoneCodeRequest)(nil), // 5: api.common.SendPhoneCodeRequest
  446. (*common.CheckPhoneCodeRequest)(nil), // 6: api.common.CheckPhoneCodeRequest
  447. (*common.PartnerIDParam)(nil), // 7: api.common.PartnerIDParam
  448. (*common.PersonParam)(nil), // 8: api.common.PersonParam
  449. (*common.ListPageRequest)(nil), // 9: api.common.ListPageRequest
  450. (*common.PersonIDList)(nil), // 10: api.common.PersonIDList
  451. (*common.WxConfReq)(nil), // 11: api.common.WxConfReq
  452. (*common.FindTagListByGroupNameAndSex)(nil), // 12: api.common.FindTagListByGroupNameAndSex
  453. (*statistics.LookMessageReply)(nil), // 13: api.statistics.LookMessageReply
  454. (*common.AddFriendMessageInfo)(nil), // 14: api.common.AddFriendMessageInfo
  455. (*common.HomeInfo)(nil), // 15: api.common.HomeInfo
  456. (*statistics.LookAndLikeListReply)(nil), // 16: api.statistics.LookAndLikeListReply
  457. (*common.PersonDBReply)(nil), // 17: api.common.PersonDBReply
  458. (*common.WxConfResponse)(nil), // 18: api.common.WxConfResponse
  459. (*common.TagListReply)(nil), // 19: api.common.TagListReply
  460. }
  461. var file_partner_proto_depIdxs = []int32{
  462. 4, // 0: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  463. 4, // 1: api.partner.Partner.GetPartnerLookNum:input_type -> google.protobuf.Empty
  464. 5, // 2: api.partner.Partner.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  465. 6, // 3: api.partner.Partner.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  466. 7, // 4: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.common.PartnerIDParam
  467. 0, // 5: api.partner.Partner.UpdatePartnerInformation:input_type -> api.partner.UpdatePartnerInformationRequest
  468. 3, // 6: api.partner.Partner.GetRandomPartnerInfo:input_type -> api.partner.GetRandomPartnerRequest
  469. 8, // 7: api.partner.Partner.PartnerGetHomeInfo:input_type -> api.common.PersonParam
  470. 9, // 8: api.partner.Partner.FindLookList:input_type -> api.common.ListPageRequest
  471. 10, // 9: api.partner.Partner.FindPartnerDBList:input_type -> api.common.PersonIDList
  472. 11, // 10: api.partner.Partner.WxConf:input_type -> api.common.WxConfReq
  473. 12, // 11: api.partner.Partner.FindTagListByGroupNameAndSex:input_type -> api.common.FindTagListByGroupNameAndSex
  474. 1, // 12: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  475. 13, // 13: api.partner.Partner.GetPartnerLookNum:output_type -> api.statistics.LookMessageReply
  476. 4, // 14: api.partner.Partner.SendPhoneCode:output_type -> google.protobuf.Empty
  477. 4, // 15: api.partner.Partner.CheckPhoneCode:output_type -> google.protobuf.Empty
  478. 14, // 16: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  479. 4, // 17: api.partner.Partner.UpdatePartnerInformation:output_type -> google.protobuf.Empty
  480. 2, // 18: api.partner.Partner.GetRandomPartnerInfo:output_type -> api.partner.RandomPartnerInfo
  481. 15, // 19: api.partner.Partner.PartnerGetHomeInfo:output_type -> api.common.HomeInfo
  482. 16, // 20: api.partner.Partner.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  483. 17, // 21: api.partner.Partner.FindPartnerDBList:output_type -> api.common.PersonDBReply
  484. 18, // 22: api.partner.Partner.WxConf:output_type -> api.common.WxConfResponse
  485. 19, // 23: api.partner.Partner.FindTagListByGroupNameAndSex:output_type -> api.common.TagListReply
  486. 12, // [12:24] is the sub-list for method output_type
  487. 0, // [0:12] is the sub-list for method input_type
  488. 0, // [0:0] is the sub-list for extension type_name
  489. 0, // [0:0] is the sub-list for extension extendee
  490. 0, // [0:0] is the sub-list for field type_name
  491. }
  492. func init() { file_partner_proto_init() }
  493. func file_partner_proto_init() {
  494. if File_partner_proto != nil {
  495. return
  496. }
  497. if !protoimpl.UnsafeEnabled {
  498. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  499. switch v := v.(*UpdatePartnerInformationRequest); i {
  500. case 0:
  501. return &v.state
  502. case 1:
  503. return &v.sizeCache
  504. case 2:
  505. return &v.unknownFields
  506. default:
  507. return nil
  508. }
  509. }
  510. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  511. switch v := v.(*PartnerInfo); i {
  512. case 0:
  513. return &v.state
  514. case 1:
  515. return &v.sizeCache
  516. case 2:
  517. return &v.unknownFields
  518. default:
  519. return nil
  520. }
  521. }
  522. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  523. switch v := v.(*RandomPartnerInfo); i {
  524. case 0:
  525. return &v.state
  526. case 1:
  527. return &v.sizeCache
  528. case 2:
  529. return &v.unknownFields
  530. default:
  531. return nil
  532. }
  533. }
  534. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  535. switch v := v.(*GetRandomPartnerRequest); i {
  536. case 0:
  537. return &v.state
  538. case 1:
  539. return &v.sizeCache
  540. case 2:
  541. return &v.unknownFields
  542. default:
  543. return nil
  544. }
  545. }
  546. }
  547. type x struct{}
  548. out := protoimpl.TypeBuilder{
  549. File: protoimpl.DescBuilder{
  550. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  551. RawDescriptor: file_partner_proto_rawDesc,
  552. NumEnums: 0,
  553. NumMessages: 4,
  554. NumExtensions: 0,
  555. NumServices: 1,
  556. },
  557. GoTypes: file_partner_proto_goTypes,
  558. DependencyIndexes: file_partner_proto_depIdxs,
  559. MessageInfos: file_partner_proto_msgTypes,
  560. }.Build()
  561. File_partner_proto = out.File
  562. file_partner_proto_rawDesc = nil
  563. file_partner_proto_goTypes = nil
  564. file_partner_proto_depIdxs = nil
  565. }