wx.pb.go 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: wx.proto
  6. package wx
  7. import (
  8. account "git.ikuban.com/server/pw-protobuf/api/account"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  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 SendAIReplyRequest struct {
  24. state protoimpl.MessageState
  25. sizeCache protoimpl.SizeCache
  26. unknownFields protoimpl.UnknownFields
  27. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  28. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  29. RobotId int64 `protobuf:"varint,3,opt,name=robotId,proto3" json:"robotId"`
  30. }
  31. func (x *SendAIReplyRequest) Reset() {
  32. *x = SendAIReplyRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_wx_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *SendAIReplyRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*SendAIReplyRequest) ProtoMessage() {}
  43. func (x *SendAIReplyRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_wx_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 SendAIReplyRequest.ProtoReflect.Descriptor instead.
  55. func (*SendAIReplyRequest) Descriptor() ([]byte, []int) {
  56. return file_wx_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *SendAIReplyRequest) GetPersonId() string {
  59. if x != nil {
  60. return x.PersonId
  61. }
  62. return ""
  63. }
  64. func (x *SendAIReplyRequest) GetName() string {
  65. if x != nil {
  66. return x.Name
  67. }
  68. return ""
  69. }
  70. func (x *SendAIReplyRequest) GetRobotId() int64 {
  71. if x != nil {
  72. return x.RobotId
  73. }
  74. return 0
  75. }
  76. type OpenIDRequest struct {
  77. state protoimpl.MessageState
  78. sizeCache protoimpl.SizeCache
  79. unknownFields protoimpl.UnknownFields
  80. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"`
  81. }
  82. func (x *OpenIDRequest) Reset() {
  83. *x = OpenIDRequest{}
  84. if protoimpl.UnsafeEnabled {
  85. mi := &file_wx_proto_msgTypes[1]
  86. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  87. ms.StoreMessageInfo(mi)
  88. }
  89. }
  90. func (x *OpenIDRequest) String() string {
  91. return protoimpl.X.MessageStringOf(x)
  92. }
  93. func (*OpenIDRequest) ProtoMessage() {}
  94. func (x *OpenIDRequest) ProtoReflect() protoreflect.Message {
  95. mi := &file_wx_proto_msgTypes[1]
  96. if protoimpl.UnsafeEnabled && x != nil {
  97. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  98. if ms.LoadMessageInfo() == nil {
  99. ms.StoreMessageInfo(mi)
  100. }
  101. return ms
  102. }
  103. return mi.MessageOf(x)
  104. }
  105. // Deprecated: Use OpenIDRequest.ProtoReflect.Descriptor instead.
  106. func (*OpenIDRequest) Descriptor() ([]byte, []int) {
  107. return file_wx_proto_rawDescGZIP(), []int{1}
  108. }
  109. func (x *OpenIDRequest) GetOpenId() string {
  110. if x != nil {
  111. return x.OpenId
  112. }
  113. return ""
  114. }
  115. type GetAccessTokenRequest struct {
  116. state protoimpl.MessageState
  117. sizeCache protoimpl.SizeCache
  118. unknownFields protoimpl.UnknownFields
  119. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid"`
  120. }
  121. func (x *GetAccessTokenRequest) Reset() {
  122. *x = GetAccessTokenRequest{}
  123. if protoimpl.UnsafeEnabled {
  124. mi := &file_wx_proto_msgTypes[2]
  125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  126. ms.StoreMessageInfo(mi)
  127. }
  128. }
  129. func (x *GetAccessTokenRequest) String() string {
  130. return protoimpl.X.MessageStringOf(x)
  131. }
  132. func (*GetAccessTokenRequest) ProtoMessage() {}
  133. func (x *GetAccessTokenRequest) ProtoReflect() protoreflect.Message {
  134. mi := &file_wx_proto_msgTypes[2]
  135. if protoimpl.UnsafeEnabled && x != nil {
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. if ms.LoadMessageInfo() == nil {
  138. ms.StoreMessageInfo(mi)
  139. }
  140. return ms
  141. }
  142. return mi.MessageOf(x)
  143. }
  144. // Deprecated: Use GetAccessTokenRequest.ProtoReflect.Descriptor instead.
  145. func (*GetAccessTokenRequest) Descriptor() ([]byte, []int) {
  146. return file_wx_proto_rawDescGZIP(), []int{2}
  147. }
  148. func (x *GetAccessTokenRequest) GetAppid() string {
  149. if x != nil {
  150. return x.Appid
  151. }
  152. return ""
  153. }
  154. type GetAccessTokenReply struct {
  155. state protoimpl.MessageState
  156. sizeCache protoimpl.SizeCache
  157. unknownFields protoimpl.UnknownFields
  158. AccessToken string `protobuf:"bytes,1,opt,name=access_token,json=accessToken,proto3" json:"access_token"`
  159. Errcode int64 `protobuf:"varint,2,opt,name=errcode,proto3" json:"errcode"`
  160. Errmsg string `protobuf:"bytes,3,opt,name=errmsg,proto3" json:"errmsg"`
  161. ExpiresIn int64 `protobuf:"varint,4,opt,name=expires_in,json=expiresIn,proto3" json:"expires_in"`
  162. }
  163. func (x *GetAccessTokenReply) Reset() {
  164. *x = GetAccessTokenReply{}
  165. if protoimpl.UnsafeEnabled {
  166. mi := &file_wx_proto_msgTypes[3]
  167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  168. ms.StoreMessageInfo(mi)
  169. }
  170. }
  171. func (x *GetAccessTokenReply) String() string {
  172. return protoimpl.X.MessageStringOf(x)
  173. }
  174. func (*GetAccessTokenReply) ProtoMessage() {}
  175. func (x *GetAccessTokenReply) ProtoReflect() protoreflect.Message {
  176. mi := &file_wx_proto_msgTypes[3]
  177. if protoimpl.UnsafeEnabled && x != nil {
  178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  179. if ms.LoadMessageInfo() == nil {
  180. ms.StoreMessageInfo(mi)
  181. }
  182. return ms
  183. }
  184. return mi.MessageOf(x)
  185. }
  186. // Deprecated: Use GetAccessTokenReply.ProtoReflect.Descriptor instead.
  187. func (*GetAccessTokenReply) Descriptor() ([]byte, []int) {
  188. return file_wx_proto_rawDescGZIP(), []int{3}
  189. }
  190. func (x *GetAccessTokenReply) GetAccessToken() string {
  191. if x != nil {
  192. return x.AccessToken
  193. }
  194. return ""
  195. }
  196. func (x *GetAccessTokenReply) GetErrcode() int64 {
  197. if x != nil {
  198. return x.Errcode
  199. }
  200. return 0
  201. }
  202. func (x *GetAccessTokenReply) GetErrmsg() string {
  203. if x != nil {
  204. return x.Errmsg
  205. }
  206. return ""
  207. }
  208. func (x *GetAccessTokenReply) GetExpiresIn() int64 {
  209. if x != nil {
  210. return x.ExpiresIn
  211. }
  212. return 0
  213. }
  214. type GetUserMsgByKeyRequest struct {
  215. state protoimpl.MessageState
  216. sizeCache protoimpl.SizeCache
  217. unknownFields protoimpl.UnknownFields
  218. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  219. }
  220. func (x *GetUserMsgByKeyRequest) Reset() {
  221. *x = GetUserMsgByKeyRequest{}
  222. if protoimpl.UnsafeEnabled {
  223. mi := &file_wx_proto_msgTypes[4]
  224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  225. ms.StoreMessageInfo(mi)
  226. }
  227. }
  228. func (x *GetUserMsgByKeyRequest) String() string {
  229. return protoimpl.X.MessageStringOf(x)
  230. }
  231. func (*GetUserMsgByKeyRequest) ProtoMessage() {}
  232. func (x *GetUserMsgByKeyRequest) ProtoReflect() protoreflect.Message {
  233. mi := &file_wx_proto_msgTypes[4]
  234. if protoimpl.UnsafeEnabled && x != nil {
  235. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  236. if ms.LoadMessageInfo() == nil {
  237. ms.StoreMessageInfo(mi)
  238. }
  239. return ms
  240. }
  241. return mi.MessageOf(x)
  242. }
  243. // Deprecated: Use GetUserMsgByKeyRequest.ProtoReflect.Descriptor instead.
  244. func (*GetUserMsgByKeyRequest) Descriptor() ([]byte, []int) {
  245. return file_wx_proto_rawDescGZIP(), []int{4}
  246. }
  247. func (x *GetUserMsgByKeyRequest) GetKey() string {
  248. if x != nil {
  249. return x.Key
  250. }
  251. return ""
  252. }
  253. type GetUserMsgByKeyReply struct {
  254. state protoimpl.MessageState
  255. sizeCache protoimpl.SizeCache
  256. unknownFields protoimpl.UnknownFields
  257. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  258. OpenId string `protobuf:"bytes,2,opt,name=openId,proto3" json:"openId"`
  259. AppId string `protobuf:"bytes,3,opt,name=appId,proto3" json:"appId"`
  260. AppName string `protobuf:"bytes,4,opt,name=appName,proto3" json:"appName"`
  261. }
  262. func (x *GetUserMsgByKeyReply) Reset() {
  263. *x = GetUserMsgByKeyReply{}
  264. if protoimpl.UnsafeEnabled {
  265. mi := &file_wx_proto_msgTypes[5]
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. ms.StoreMessageInfo(mi)
  268. }
  269. }
  270. func (x *GetUserMsgByKeyReply) String() string {
  271. return protoimpl.X.MessageStringOf(x)
  272. }
  273. func (*GetUserMsgByKeyReply) ProtoMessage() {}
  274. func (x *GetUserMsgByKeyReply) ProtoReflect() protoreflect.Message {
  275. mi := &file_wx_proto_msgTypes[5]
  276. if protoimpl.UnsafeEnabled && x != nil {
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. if ms.LoadMessageInfo() == nil {
  279. ms.StoreMessageInfo(mi)
  280. }
  281. return ms
  282. }
  283. return mi.MessageOf(x)
  284. }
  285. // Deprecated: Use GetUserMsgByKeyReply.ProtoReflect.Descriptor instead.
  286. func (*GetUserMsgByKeyReply) Descriptor() ([]byte, []int) {
  287. return file_wx_proto_rawDescGZIP(), []int{5}
  288. }
  289. func (x *GetUserMsgByKeyReply) GetPartnerId() string {
  290. if x != nil {
  291. return x.PartnerId
  292. }
  293. return ""
  294. }
  295. func (x *GetUserMsgByKeyReply) GetOpenId() string {
  296. if x != nil {
  297. return x.OpenId
  298. }
  299. return ""
  300. }
  301. func (x *GetUserMsgByKeyReply) GetAppId() string {
  302. if x != nil {
  303. return x.AppId
  304. }
  305. return ""
  306. }
  307. func (x *GetUserMsgByKeyReply) GetAppName() string {
  308. if x != nil {
  309. return x.AppName
  310. }
  311. return ""
  312. }
  313. type ReduceUserUnreadRequest struct {
  314. state protoimpl.MessageState
  315. sizeCache protoimpl.SizeCache
  316. unknownFields protoimpl.UnknownFields
  317. AccountId int64 `protobuf:"varint,1,opt,name=accountId,proto3" json:"accountId"`
  318. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"`
  319. }
  320. func (x *ReduceUserUnreadRequest) Reset() {
  321. *x = ReduceUserUnreadRequest{}
  322. if protoimpl.UnsafeEnabled {
  323. mi := &file_wx_proto_msgTypes[6]
  324. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  325. ms.StoreMessageInfo(mi)
  326. }
  327. }
  328. func (x *ReduceUserUnreadRequest) String() string {
  329. return protoimpl.X.MessageStringOf(x)
  330. }
  331. func (*ReduceUserUnreadRequest) ProtoMessage() {}
  332. func (x *ReduceUserUnreadRequest) ProtoReflect() protoreflect.Message {
  333. mi := &file_wx_proto_msgTypes[6]
  334. if protoimpl.UnsafeEnabled && x != nil {
  335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  336. if ms.LoadMessageInfo() == nil {
  337. ms.StoreMessageInfo(mi)
  338. }
  339. return ms
  340. }
  341. return mi.MessageOf(x)
  342. }
  343. // Deprecated: Use ReduceUserUnreadRequest.ProtoReflect.Descriptor instead.
  344. func (*ReduceUserUnreadRequest) Descriptor() ([]byte, []int) {
  345. return file_wx_proto_rawDescGZIP(), []int{6}
  346. }
  347. func (x *ReduceUserUnreadRequest) GetAccountId() int64 {
  348. if x != nil {
  349. return x.AccountId
  350. }
  351. return 0
  352. }
  353. func (x *ReduceUserUnreadRequest) GetPersonId() string {
  354. if x != nil {
  355. return x.PersonId
  356. }
  357. return ""
  358. }
  359. type SendNewMessageUnreadReminderRequest struct {
  360. state protoimpl.MessageState
  361. sizeCache protoimpl.SizeCache
  362. unknownFields protoimpl.UnknownFields
  363. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  364. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  365. }
  366. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  367. *x = SendNewMessageUnreadReminderRequest{}
  368. if protoimpl.UnsafeEnabled {
  369. mi := &file_wx_proto_msgTypes[7]
  370. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  371. ms.StoreMessageInfo(mi)
  372. }
  373. }
  374. func (x *SendNewMessageUnreadReminderRequest) String() string {
  375. return protoimpl.X.MessageStringOf(x)
  376. }
  377. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  378. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  379. mi := &file_wx_proto_msgTypes[7]
  380. if protoimpl.UnsafeEnabled && x != nil {
  381. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  382. if ms.LoadMessageInfo() == nil {
  383. ms.StoreMessageInfo(mi)
  384. }
  385. return ms
  386. }
  387. return mi.MessageOf(x)
  388. }
  389. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  390. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  391. return file_wx_proto_rawDescGZIP(), []int{7}
  392. }
  393. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  394. if x != nil {
  395. return x.PersonId
  396. }
  397. return ""
  398. }
  399. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  400. if x != nil {
  401. return x.SendPersonId
  402. }
  403. return ""
  404. }
  405. var File_wx_proto protoreflect.FileDescriptor
  406. var file_wx_proto_rawDesc = []byte{
  407. 0x0a, 0x08, 0x77, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x61, 0x70, 0x69, 0x2e,
  408. 0x77, 0x78, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
  409. 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  410. 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  411. 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61,
  412. 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  413. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x63, 0x63, 0x6f,
  414. 0x75, 0x6e, 0x74, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  415. 0x6f, 0x22, 0x5e, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x65, 0x70, 0x6c, 0x79,
  416. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  417. 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  418. 0x6e, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  419. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
  420. 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49,
  421. 0x64, 0x22, 0x27, 0x0a, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  422. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  423. 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x22, 0x2d, 0x0a, 0x15, 0x47, 0x65,
  424. 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
  425. 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  426. 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x89, 0x01, 0x0a, 0x13, 0x47, 0x65,
  427. 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  428. 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65,
  429. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54,
  430. 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x18,
  431. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x16,
  432. 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  433. 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65,
  434. 0x73, 0x5f, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69,
  435. 0x72, 0x65, 0x73, 0x49, 0x6e, 0x22, 0x2a, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  436. 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  437. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  438. 0x79, 0x22, 0x7c, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42,
  439. 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  440. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  441. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49,
  442. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12,
  443. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  444. 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65,
  445. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22,
  446. 0x53, 0x0a, 0x17, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72,
  447. 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63,
  448. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61,
  449. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  450. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  451. 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d,
  452. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69,
  453. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  454. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  455. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50,
  456. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73,
  457. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x32, 0xb1, 0x08, 0x0a, 0x02,
  458. 0x57, 0x78, 0x12, 0x42, 0x0a, 0x0e, 0x43, 0x72, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e,
  459. 0x55, 0x73, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  460. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67,
  461. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  462. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x16, 0x43, 0x72, 0x6f, 0x6e, 0x53, 0x65,
  463. 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  464. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  465. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  466. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  467. 0x22, 0x00, 0x12, 0x65, 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73,
  468. 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  469. 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x53, 0x65, 0x6e, 0x64,
  470. 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  471. 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  472. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  473. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e,
  474. 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  475. 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70,
  476. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  477. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  478. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  479. 0x12, 0x4d, 0x0a, 0x10, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e,
  480. 0x72, 0x65, 0x61, 0x64, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x52, 0x65,
  481. 0x64, 0x75, 0x63, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65,
  482. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  483. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  484. 0x51, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b,
  485. 0x65, 0x79, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47, 0x65, 0x74, 0x55,
  486. 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  487. 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47, 0x65, 0x74, 0x55,
  488. 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79,
  489. 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61,
  490. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66,
  491. 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  492. 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  493. 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78,
  494. 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a,
  495. 0x12, 0x74, 0x0a, 0x13, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
  496. 0x61, 0x6c, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63,
  497. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x44, 0x1a, 0x19, 0x2e,
  498. 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4d, 0x61, 0x74, 0x65,
  499. 0x72, 0x69, 0x61, 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26,
  500. 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61,
  501. 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2f, 0x76, 0x6f,
  502. 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x4b, 0x0a, 0x17, 0x43, 0x72, 0x6f, 0x6e, 0x44, 0x65,
  503. 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63,
  504. 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  505. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  506. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  507. 0x79, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  508. 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47,
  509. 0x65, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71,
  510. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x2e, 0x47, 0x65,
  511. 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  512. 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x12, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  513. 0x67, 0x65, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  514. 0x12, 0x68, 0x0a, 0x16, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74,
  515. 0x6f, 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69,
  516. 0x2e, 0x77, 0x78, 0x2e, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  517. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  518. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  519. 0x19, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x2f, 0x73, 0x75, 0x62,
  520. 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2f, 0x77, 0x65, 0x62, 0x12, 0x43, 0x0a, 0x0b, 0x53, 0x65,
  521. 0x6e, 0x64, 0x41, 0x49, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  522. 0x77, 0x78, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52, 0x65,
  523. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  524. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42,
  525. 0x37, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x2e, 0x77, 0x78, 0x50, 0x01, 0x5a, 0x2b, 0x67, 0x69, 0x74,
  526. 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76,
  527. 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
  528. 0x70, 0x69, 0x2f, 0x77, 0x78, 0x3b, 0x77, 0x78, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  529. }
  530. var (
  531. file_wx_proto_rawDescOnce sync.Once
  532. file_wx_proto_rawDescData = file_wx_proto_rawDesc
  533. )
  534. func file_wx_proto_rawDescGZIP() []byte {
  535. file_wx_proto_rawDescOnce.Do(func() {
  536. file_wx_proto_rawDescData = protoimpl.X.CompressGZIP(file_wx_proto_rawDescData)
  537. })
  538. return file_wx_proto_rawDescData
  539. }
  540. var file_wx_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  541. var file_wx_proto_goTypes = []interface{}{
  542. (*SendAIReplyRequest)(nil), // 0: api.wx.SendAIReplyRequest
  543. (*OpenIDRequest)(nil), // 1: api.wx.OpenIDRequest
  544. (*GetAccessTokenRequest)(nil), // 2: api.wx.GetAccessTokenRequest
  545. (*GetAccessTokenReply)(nil), // 3: api.wx.GetAccessTokenReply
  546. (*GetUserMsgByKeyRequest)(nil), // 4: api.wx.GetUserMsgByKeyRequest
  547. (*GetUserMsgByKeyReply)(nil), // 5: api.wx.GetUserMsgByKeyReply
  548. (*ReduceUserUnreadRequest)(nil), // 6: api.wx.ReduceUserUnreadRequest
  549. (*SendNewMessageUnreadReminderRequest)(nil), // 7: api.wx.SendNewMessageUnreadReminderRequest
  550. (*emptypb.Empty)(nil), // 8: google.protobuf.Empty
  551. (*common.PersonIDParam)(nil), // 9: api.common.PersonIDParam
  552. (*common.WxConfReq)(nil), // 10: api.common.WxConfReq
  553. (*account.MediaID)(nil), // 11: api.account.MediaID
  554. (*common.WxConfResponse)(nil), // 12: api.common.WxConfResponse
  555. (*account.MaterialLink)(nil), // 13: api.account.MaterialLink
  556. }
  557. var file_wx_proto_depIdxs = []int32{
  558. 8, // 0: api.wx.Wx.CronSignInUser:input_type -> google.protobuf.Empty
  559. 8, // 1: api.wx.Wx.CronSendUnreadTemplate:input_type -> google.protobuf.Empty
  560. 7, // 2: api.wx.Wx.SendNewMessageUnreadReminder:input_type -> api.wx.SendNewMessageUnreadReminderRequest
  561. 9, // 3: api.wx.Wx.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  562. 6, // 4: api.wx.Wx.ReduceUserUnread:input_type -> api.wx.ReduceUserUnreadRequest
  563. 4, // 5: api.wx.Wx.GetUserMsgByKey:input_type -> api.wx.GetUserMsgByKeyRequest
  564. 10, // 6: api.wx.Wx.WxConf:input_type -> api.common.WxConfReq
  565. 11, // 7: api.wx.Wx.UploadMaterialVoice:input_type -> api.account.MediaID
  566. 8, // 8: api.wx.Wx.CronDeleteOldUserSelect:input_type -> google.protobuf.Empty
  567. 2, // 9: api.wx.Wx.GetAccessToken:input_type -> api.wx.GetAccessTokenRequest
  568. 1, // 10: api.wx.Wx.SendNewVisitorReminder:input_type -> api.wx.OpenIDRequest
  569. 0, // 11: api.wx.Wx.SendAIReply:input_type -> api.wx.SendAIReplyRequest
  570. 8, // 12: api.wx.Wx.CronSignInUser:output_type -> google.protobuf.Empty
  571. 8, // 13: api.wx.Wx.CronSendUnreadTemplate:output_type -> google.protobuf.Empty
  572. 8, // 14: api.wx.Wx.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  573. 8, // 15: api.wx.Wx.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  574. 8, // 16: api.wx.Wx.ReduceUserUnread:output_type -> google.protobuf.Empty
  575. 5, // 17: api.wx.Wx.GetUserMsgByKey:output_type -> api.wx.GetUserMsgByKeyReply
  576. 12, // 18: api.wx.Wx.WxConf:output_type -> api.common.WxConfResponse
  577. 13, // 19: api.wx.Wx.UploadMaterialVoice:output_type -> api.account.MaterialLink
  578. 8, // 20: api.wx.Wx.CronDeleteOldUserSelect:output_type -> google.protobuf.Empty
  579. 3, // 21: api.wx.Wx.GetAccessToken:output_type -> api.wx.GetAccessTokenReply
  580. 8, // 22: api.wx.Wx.SendNewVisitorReminder:output_type -> google.protobuf.Empty
  581. 8, // 23: api.wx.Wx.SendAIReply:output_type -> google.protobuf.Empty
  582. 12, // [12:24] is the sub-list for method output_type
  583. 0, // [0:12] is the sub-list for method input_type
  584. 0, // [0:0] is the sub-list for extension type_name
  585. 0, // [0:0] is the sub-list for extension extendee
  586. 0, // [0:0] is the sub-list for field type_name
  587. }
  588. func init() { file_wx_proto_init() }
  589. func file_wx_proto_init() {
  590. if File_wx_proto != nil {
  591. return
  592. }
  593. if !protoimpl.UnsafeEnabled {
  594. file_wx_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  595. switch v := v.(*SendAIReplyRequest); i {
  596. case 0:
  597. return &v.state
  598. case 1:
  599. return &v.sizeCache
  600. case 2:
  601. return &v.unknownFields
  602. default:
  603. return nil
  604. }
  605. }
  606. file_wx_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  607. switch v := v.(*OpenIDRequest); i {
  608. case 0:
  609. return &v.state
  610. case 1:
  611. return &v.sizeCache
  612. case 2:
  613. return &v.unknownFields
  614. default:
  615. return nil
  616. }
  617. }
  618. file_wx_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  619. switch v := v.(*GetAccessTokenRequest); i {
  620. case 0:
  621. return &v.state
  622. case 1:
  623. return &v.sizeCache
  624. case 2:
  625. return &v.unknownFields
  626. default:
  627. return nil
  628. }
  629. }
  630. file_wx_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  631. switch v := v.(*GetAccessTokenReply); i {
  632. case 0:
  633. return &v.state
  634. case 1:
  635. return &v.sizeCache
  636. case 2:
  637. return &v.unknownFields
  638. default:
  639. return nil
  640. }
  641. }
  642. file_wx_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  643. switch v := v.(*GetUserMsgByKeyRequest); i {
  644. case 0:
  645. return &v.state
  646. case 1:
  647. return &v.sizeCache
  648. case 2:
  649. return &v.unknownFields
  650. default:
  651. return nil
  652. }
  653. }
  654. file_wx_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  655. switch v := v.(*GetUserMsgByKeyReply); i {
  656. case 0:
  657. return &v.state
  658. case 1:
  659. return &v.sizeCache
  660. case 2:
  661. return &v.unknownFields
  662. default:
  663. return nil
  664. }
  665. }
  666. file_wx_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  667. switch v := v.(*ReduceUserUnreadRequest); i {
  668. case 0:
  669. return &v.state
  670. case 1:
  671. return &v.sizeCache
  672. case 2:
  673. return &v.unknownFields
  674. default:
  675. return nil
  676. }
  677. }
  678. file_wx_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  679. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  680. case 0:
  681. return &v.state
  682. case 1:
  683. return &v.sizeCache
  684. case 2:
  685. return &v.unknownFields
  686. default:
  687. return nil
  688. }
  689. }
  690. }
  691. type x struct{}
  692. out := protoimpl.TypeBuilder{
  693. File: protoimpl.DescBuilder{
  694. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  695. RawDescriptor: file_wx_proto_rawDesc,
  696. NumEnums: 0,
  697. NumMessages: 8,
  698. NumExtensions: 0,
  699. NumServices: 1,
  700. },
  701. GoTypes: file_wx_proto_goTypes,
  702. DependencyIndexes: file_wx_proto_depIdxs,
  703. MessageInfos: file_wx_proto_msgTypes,
  704. }.Build()
  705. File_wx_proto = out.File
  706. file_wx_proto_rawDesc = nil
  707. file_wx_proto_goTypes = nil
  708. file_wx_proto_depIdxs = nil
  709. }