account.pb.go 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  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: account.proto
  6. package account
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. _ "google.golang.org/genproto/googleapis/api/annotations"
  10. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. emptypb "google.golang.org/protobuf/types/known/emptypb"
  13. reflect "reflect"
  14. sync "sync"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type StatisticsSubscribeMessageRequest struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. IdList []string `protobuf:"bytes,1,rep,name=idList,proto3" json:"idList"`
  27. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  28. }
  29. func (x *StatisticsSubscribeMessageRequest) Reset() {
  30. *x = StatisticsSubscribeMessageRequest{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_account_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *StatisticsSubscribeMessageRequest) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*StatisticsSubscribeMessageRequest) ProtoMessage() {}
  41. func (x *StatisticsSubscribeMessageRequest) ProtoReflect() protoreflect.Message {
  42. mi := &file_account_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use StatisticsSubscribeMessageRequest.ProtoReflect.Descriptor instead.
  53. func (*StatisticsSubscribeMessageRequest) Descriptor() ([]byte, []int) {
  54. return file_account_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *StatisticsSubscribeMessageRequest) GetIdList() []string {
  57. if x != nil {
  58. return x.IdList
  59. }
  60. return nil
  61. }
  62. func (x *StatisticsSubscribeMessageRequest) GetUserId() string {
  63. if x != nil {
  64. return x.UserId
  65. }
  66. return ""
  67. }
  68. type FindIdentifyByAccountIDAndIsSubscribeRequest struct {
  69. state protoimpl.MessageState
  70. sizeCache protoimpl.SizeCache
  71. unknownFields protoimpl.UnknownFields
  72. AccountIds []int64 `protobuf:"varint,1,rep,packed,name=accountIds,proto3" json:"accountIds"`
  73. }
  74. func (x *FindIdentifyByAccountIDAndIsSubscribeRequest) Reset() {
  75. *x = FindIdentifyByAccountIDAndIsSubscribeRequest{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_account_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *FindIdentifyByAccountIDAndIsSubscribeRequest) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*FindIdentifyByAccountIDAndIsSubscribeRequest) ProtoMessage() {}
  86. func (x *FindIdentifyByAccountIDAndIsSubscribeRequest) ProtoReflect() protoreflect.Message {
  87. mi := &file_account_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use FindIdentifyByAccountIDAndIsSubscribeRequest.ProtoReflect.Descriptor instead.
  98. func (*FindIdentifyByAccountIDAndIsSubscribeRequest) Descriptor() ([]byte, []int) {
  99. return file_account_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *FindIdentifyByAccountIDAndIsSubscribeRequest) GetAccountIds() []int64 {
  102. if x != nil {
  103. return x.AccountIds
  104. }
  105. return nil
  106. }
  107. type FindIdentifyByAccountIDAndIsSubscribeReply struct {
  108. state protoimpl.MessageState
  109. sizeCache protoimpl.SizeCache
  110. unknownFields protoimpl.UnknownFields
  111. List []*FindIdentifyByAccountIDInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  112. }
  113. func (x *FindIdentifyByAccountIDAndIsSubscribeReply) Reset() {
  114. *x = FindIdentifyByAccountIDAndIsSubscribeReply{}
  115. if protoimpl.UnsafeEnabled {
  116. mi := &file_account_proto_msgTypes[2]
  117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  118. ms.StoreMessageInfo(mi)
  119. }
  120. }
  121. func (x *FindIdentifyByAccountIDAndIsSubscribeReply) String() string {
  122. return protoimpl.X.MessageStringOf(x)
  123. }
  124. func (*FindIdentifyByAccountIDAndIsSubscribeReply) ProtoMessage() {}
  125. func (x *FindIdentifyByAccountIDAndIsSubscribeReply) ProtoReflect() protoreflect.Message {
  126. mi := &file_account_proto_msgTypes[2]
  127. if protoimpl.UnsafeEnabled && x != nil {
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. if ms.LoadMessageInfo() == nil {
  130. ms.StoreMessageInfo(mi)
  131. }
  132. return ms
  133. }
  134. return mi.MessageOf(x)
  135. }
  136. // Deprecated: Use FindIdentifyByAccountIDAndIsSubscribeReply.ProtoReflect.Descriptor instead.
  137. func (*FindIdentifyByAccountIDAndIsSubscribeReply) Descriptor() ([]byte, []int) {
  138. return file_account_proto_rawDescGZIP(), []int{2}
  139. }
  140. func (x *FindIdentifyByAccountIDAndIsSubscribeReply) GetList() []*FindIdentifyByAccountIDInfo {
  141. if x != nil {
  142. return x.List
  143. }
  144. return nil
  145. }
  146. type FindIdentifyByAccountIDInfo struct {
  147. state protoimpl.MessageState
  148. sizeCache protoimpl.SizeCache
  149. unknownFields protoimpl.UnknownFields
  150. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"`
  151. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid"`
  152. AccountId int64 `protobuf:"varint,3,opt,name=accountId,proto3" json:"accountId"`
  153. }
  154. func (x *FindIdentifyByAccountIDInfo) Reset() {
  155. *x = FindIdentifyByAccountIDInfo{}
  156. if protoimpl.UnsafeEnabled {
  157. mi := &file_account_proto_msgTypes[3]
  158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  159. ms.StoreMessageInfo(mi)
  160. }
  161. }
  162. func (x *FindIdentifyByAccountIDInfo) String() string {
  163. return protoimpl.X.MessageStringOf(x)
  164. }
  165. func (*FindIdentifyByAccountIDInfo) ProtoMessage() {}
  166. func (x *FindIdentifyByAccountIDInfo) ProtoReflect() protoreflect.Message {
  167. mi := &file_account_proto_msgTypes[3]
  168. if protoimpl.UnsafeEnabled && x != nil {
  169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  170. if ms.LoadMessageInfo() == nil {
  171. ms.StoreMessageInfo(mi)
  172. }
  173. return ms
  174. }
  175. return mi.MessageOf(x)
  176. }
  177. // Deprecated: Use FindIdentifyByAccountIDInfo.ProtoReflect.Descriptor instead.
  178. func (*FindIdentifyByAccountIDInfo) Descriptor() ([]byte, []int) {
  179. return file_account_proto_rawDescGZIP(), []int{3}
  180. }
  181. func (x *FindIdentifyByAccountIDInfo) GetOpenId() string {
  182. if x != nil {
  183. return x.OpenId
  184. }
  185. return ""
  186. }
  187. func (x *FindIdentifyByAccountIDInfo) GetAppid() string {
  188. if x != nil {
  189. return x.Appid
  190. }
  191. return ""
  192. }
  193. func (x *FindIdentifyByAccountIDInfo) GetAccountId() int64 {
  194. if x != nil {
  195. return x.AccountId
  196. }
  197. return 0
  198. }
  199. type GetGetGzhConfigReply struct {
  200. state protoimpl.MessageState
  201. sizeCache protoimpl.SizeCache
  202. unknownFields protoimpl.UnknownFields
  203. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId"` // 公众号Id
  204. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 公众号名称
  205. ImageUrl string `protobuf:"bytes,3,opt,name=imageUrl,proto3" json:"imageUrl"` // 公众号图片
  206. PrivacyPolicyUrl string `protobuf:"bytes,4,opt,name=privacyPolicyUrl,proto3" json:"privacyPolicyUrl"` // 公众号隐私政策链接
  207. UserAgreementUrl string `protobuf:"bytes,5,opt,name=userAgreementUrl,proto3" json:"userAgreementUrl"` // 公众号用户协议链接
  208. NoteSubscribeTemplateIds []string `protobuf:"bytes,6,rep,name=noteSubscribeTemplateIds,proto3" json:"noteSubscribeTemplateIds"`
  209. ChatSubscribeTemplateIds []string `protobuf:"bytes,7,rep,name=chatSubscribeTemplateIds,proto3" json:"chatSubscribeTemplateIds"`
  210. RegisterSubscribeTemplateIds []string `protobuf:"bytes,8,rep,name=registerSubscribeTemplateIds,proto3" json:"registerSubscribeTemplateIds"`
  211. ContactUrl string `protobuf:"bytes,9,opt,name=contactUrl,proto3" json:"contactUrl"`
  212. }
  213. func (x *GetGetGzhConfigReply) Reset() {
  214. *x = GetGetGzhConfigReply{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_account_proto_msgTypes[4]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *GetGetGzhConfigReply) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*GetGetGzhConfigReply) ProtoMessage() {}
  225. func (x *GetGetGzhConfigReply) ProtoReflect() protoreflect.Message {
  226. mi := &file_account_proto_msgTypes[4]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use GetGetGzhConfigReply.ProtoReflect.Descriptor instead.
  237. func (*GetGetGzhConfigReply) Descriptor() ([]byte, []int) {
  238. return file_account_proto_rawDescGZIP(), []int{4}
  239. }
  240. func (x *GetGetGzhConfigReply) GetAppId() string {
  241. if x != nil {
  242. return x.AppId
  243. }
  244. return ""
  245. }
  246. func (x *GetGetGzhConfigReply) GetName() string {
  247. if x != nil {
  248. return x.Name
  249. }
  250. return ""
  251. }
  252. func (x *GetGetGzhConfigReply) GetImageUrl() string {
  253. if x != nil {
  254. return x.ImageUrl
  255. }
  256. return ""
  257. }
  258. func (x *GetGetGzhConfigReply) GetPrivacyPolicyUrl() string {
  259. if x != nil {
  260. return x.PrivacyPolicyUrl
  261. }
  262. return ""
  263. }
  264. func (x *GetGetGzhConfigReply) GetUserAgreementUrl() string {
  265. if x != nil {
  266. return x.UserAgreementUrl
  267. }
  268. return ""
  269. }
  270. func (x *GetGetGzhConfigReply) GetNoteSubscribeTemplateIds() []string {
  271. if x != nil {
  272. return x.NoteSubscribeTemplateIds
  273. }
  274. return nil
  275. }
  276. func (x *GetGetGzhConfigReply) GetChatSubscribeTemplateIds() []string {
  277. if x != nil {
  278. return x.ChatSubscribeTemplateIds
  279. }
  280. return nil
  281. }
  282. func (x *GetGetGzhConfigReply) GetRegisterSubscribeTemplateIds() []string {
  283. if x != nil {
  284. return x.RegisterSubscribeTemplateIds
  285. }
  286. return nil
  287. }
  288. func (x *GetGetGzhConfigReply) GetContactUrl() string {
  289. if x != nil {
  290. return x.ContactUrl
  291. }
  292. return ""
  293. }
  294. type GetIdentifyByAccountIDRequest struct {
  295. state protoimpl.MessageState
  296. sizeCache protoimpl.SizeCache
  297. unknownFields protoimpl.UnknownFields
  298. AccountId int64 `protobuf:"varint,1,opt,name=accountId,proto3" json:"accountId"`
  299. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid"`
  300. }
  301. func (x *GetIdentifyByAccountIDRequest) Reset() {
  302. *x = GetIdentifyByAccountIDRequest{}
  303. if protoimpl.UnsafeEnabled {
  304. mi := &file_account_proto_msgTypes[5]
  305. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  306. ms.StoreMessageInfo(mi)
  307. }
  308. }
  309. func (x *GetIdentifyByAccountIDRequest) String() string {
  310. return protoimpl.X.MessageStringOf(x)
  311. }
  312. func (*GetIdentifyByAccountIDRequest) ProtoMessage() {}
  313. func (x *GetIdentifyByAccountIDRequest) ProtoReflect() protoreflect.Message {
  314. mi := &file_account_proto_msgTypes[5]
  315. if protoimpl.UnsafeEnabled && x != nil {
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. if ms.LoadMessageInfo() == nil {
  318. ms.StoreMessageInfo(mi)
  319. }
  320. return ms
  321. }
  322. return mi.MessageOf(x)
  323. }
  324. // Deprecated: Use GetIdentifyByAccountIDRequest.ProtoReflect.Descriptor instead.
  325. func (*GetIdentifyByAccountIDRequest) Descriptor() ([]byte, []int) {
  326. return file_account_proto_rawDescGZIP(), []int{5}
  327. }
  328. func (x *GetIdentifyByAccountIDRequest) GetAccountId() int64 {
  329. if x != nil {
  330. return x.AccountId
  331. }
  332. return 0
  333. }
  334. func (x *GetIdentifyByAccountIDRequest) GetAppid() string {
  335. if x != nil {
  336. return x.Appid
  337. }
  338. return ""
  339. }
  340. type GetIdentifyByAccountIDReply struct {
  341. state protoimpl.MessageState
  342. sizeCache protoimpl.SizeCache
  343. unknownFields protoimpl.UnknownFields
  344. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"`
  345. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid"`
  346. }
  347. func (x *GetIdentifyByAccountIDReply) Reset() {
  348. *x = GetIdentifyByAccountIDReply{}
  349. if protoimpl.UnsafeEnabled {
  350. mi := &file_account_proto_msgTypes[6]
  351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  352. ms.StoreMessageInfo(mi)
  353. }
  354. }
  355. func (x *GetIdentifyByAccountIDReply) String() string {
  356. return protoimpl.X.MessageStringOf(x)
  357. }
  358. func (*GetIdentifyByAccountIDReply) ProtoMessage() {}
  359. func (x *GetIdentifyByAccountIDReply) ProtoReflect() protoreflect.Message {
  360. mi := &file_account_proto_msgTypes[6]
  361. if protoimpl.UnsafeEnabled && x != nil {
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. if ms.LoadMessageInfo() == nil {
  364. ms.StoreMessageInfo(mi)
  365. }
  366. return ms
  367. }
  368. return mi.MessageOf(x)
  369. }
  370. // Deprecated: Use GetIdentifyByAccountIDReply.ProtoReflect.Descriptor instead.
  371. func (*GetIdentifyByAccountIDReply) Descriptor() ([]byte, []int) {
  372. return file_account_proto_rawDescGZIP(), []int{6}
  373. }
  374. func (x *GetIdentifyByAccountIDReply) GetOpenId() string {
  375. if x != nil {
  376. return x.OpenId
  377. }
  378. return ""
  379. }
  380. func (x *GetIdentifyByAccountIDReply) GetAppid() string {
  381. if x != nil {
  382. return x.Appid
  383. }
  384. return ""
  385. }
  386. type CheckTextRequest struct {
  387. state protoimpl.MessageState
  388. sizeCache protoimpl.SizeCache
  389. unknownFields protoimpl.UnknownFields
  390. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 待审核的文本
  391. }
  392. func (x *CheckTextRequest) Reset() {
  393. *x = CheckTextRequest{}
  394. if protoimpl.UnsafeEnabled {
  395. mi := &file_account_proto_msgTypes[7]
  396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  397. ms.StoreMessageInfo(mi)
  398. }
  399. }
  400. func (x *CheckTextRequest) String() string {
  401. return protoimpl.X.MessageStringOf(x)
  402. }
  403. func (*CheckTextRequest) ProtoMessage() {}
  404. func (x *CheckTextRequest) ProtoReflect() protoreflect.Message {
  405. mi := &file_account_proto_msgTypes[7]
  406. if protoimpl.UnsafeEnabled && x != nil {
  407. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  408. if ms.LoadMessageInfo() == nil {
  409. ms.StoreMessageInfo(mi)
  410. }
  411. return ms
  412. }
  413. return mi.MessageOf(x)
  414. }
  415. // Deprecated: Use CheckTextRequest.ProtoReflect.Descriptor instead.
  416. func (*CheckTextRequest) Descriptor() ([]byte, []int) {
  417. return file_account_proto_rawDescGZIP(), []int{7}
  418. }
  419. func (x *CheckTextRequest) GetText() string {
  420. if x != nil {
  421. return x.Text
  422. }
  423. return ""
  424. }
  425. type CheckTextReply struct {
  426. state protoimpl.MessageState
  427. sizeCache protoimpl.SizeCache
  428. unknownFields protoimpl.UnknownFields
  429. IsPass bool `protobuf:"varint,1,opt,name=isPass,proto3" json:"isPass"` // 是否通过
  430. }
  431. func (x *CheckTextReply) Reset() {
  432. *x = CheckTextReply{}
  433. if protoimpl.UnsafeEnabled {
  434. mi := &file_account_proto_msgTypes[8]
  435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  436. ms.StoreMessageInfo(mi)
  437. }
  438. }
  439. func (x *CheckTextReply) String() string {
  440. return protoimpl.X.MessageStringOf(x)
  441. }
  442. func (*CheckTextReply) ProtoMessage() {}
  443. func (x *CheckTextReply) ProtoReflect() protoreflect.Message {
  444. mi := &file_account_proto_msgTypes[8]
  445. if protoimpl.UnsafeEnabled && x != nil {
  446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  447. if ms.LoadMessageInfo() == nil {
  448. ms.StoreMessageInfo(mi)
  449. }
  450. return ms
  451. }
  452. return mi.MessageOf(x)
  453. }
  454. // Deprecated: Use CheckTextReply.ProtoReflect.Descriptor instead.
  455. func (*CheckTextReply) Descriptor() ([]byte, []int) {
  456. return file_account_proto_rawDescGZIP(), []int{8}
  457. }
  458. func (x *CheckTextReply) GetIsPass() bool {
  459. if x != nil {
  460. return x.IsPass
  461. }
  462. return false
  463. }
  464. type MediaID struct {
  465. state protoimpl.MessageState
  466. sizeCache protoimpl.SizeCache
  467. unknownFields protoimpl.UnknownFields
  468. MediaId string `protobuf:"bytes,1,opt,name=mediaId,proto3" json:"mediaId"`
  469. }
  470. func (x *MediaID) Reset() {
  471. *x = MediaID{}
  472. if protoimpl.UnsafeEnabled {
  473. mi := &file_account_proto_msgTypes[9]
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. ms.StoreMessageInfo(mi)
  476. }
  477. }
  478. func (x *MediaID) String() string {
  479. return protoimpl.X.MessageStringOf(x)
  480. }
  481. func (*MediaID) ProtoMessage() {}
  482. func (x *MediaID) ProtoReflect() protoreflect.Message {
  483. mi := &file_account_proto_msgTypes[9]
  484. if protoimpl.UnsafeEnabled && x != nil {
  485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  486. if ms.LoadMessageInfo() == nil {
  487. ms.StoreMessageInfo(mi)
  488. }
  489. return ms
  490. }
  491. return mi.MessageOf(x)
  492. }
  493. // Deprecated: Use MediaID.ProtoReflect.Descriptor instead.
  494. func (*MediaID) Descriptor() ([]byte, []int) {
  495. return file_account_proto_rawDescGZIP(), []int{9}
  496. }
  497. func (x *MediaID) GetMediaId() string {
  498. if x != nil {
  499. return x.MediaId
  500. }
  501. return ""
  502. }
  503. type MaterialLink struct {
  504. state protoimpl.MessageState
  505. sizeCache protoimpl.SizeCache
  506. unknownFields protoimpl.UnknownFields
  507. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  508. }
  509. func (x *MaterialLink) Reset() {
  510. *x = MaterialLink{}
  511. if protoimpl.UnsafeEnabled {
  512. mi := &file_account_proto_msgTypes[10]
  513. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  514. ms.StoreMessageInfo(mi)
  515. }
  516. }
  517. func (x *MaterialLink) String() string {
  518. return protoimpl.X.MessageStringOf(x)
  519. }
  520. func (*MaterialLink) ProtoMessage() {}
  521. func (x *MaterialLink) ProtoReflect() protoreflect.Message {
  522. mi := &file_account_proto_msgTypes[10]
  523. if protoimpl.UnsafeEnabled && x != nil {
  524. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  525. if ms.LoadMessageInfo() == nil {
  526. ms.StoreMessageInfo(mi)
  527. }
  528. return ms
  529. }
  530. return mi.MessageOf(x)
  531. }
  532. // Deprecated: Use MaterialLink.ProtoReflect.Descriptor instead.
  533. func (*MaterialLink) Descriptor() ([]byte, []int) {
  534. return file_account_proto_rawDescGZIP(), []int{10}
  535. }
  536. func (x *MaterialLink) GetLink() string {
  537. if x != nil {
  538. return x.Link
  539. }
  540. return ""
  541. }
  542. type RandomNicknameReply struct {
  543. state protoimpl.MessageState
  544. sizeCache protoimpl.SizeCache
  545. unknownFields protoimpl.UnknownFields
  546. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"`
  547. }
  548. func (x *RandomNicknameReply) Reset() {
  549. *x = RandomNicknameReply{}
  550. if protoimpl.UnsafeEnabled {
  551. mi := &file_account_proto_msgTypes[11]
  552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  553. ms.StoreMessageInfo(mi)
  554. }
  555. }
  556. func (x *RandomNicknameReply) String() string {
  557. return protoimpl.X.MessageStringOf(x)
  558. }
  559. func (*RandomNicknameReply) ProtoMessage() {}
  560. func (x *RandomNicknameReply) ProtoReflect() protoreflect.Message {
  561. mi := &file_account_proto_msgTypes[11]
  562. if protoimpl.UnsafeEnabled && x != nil {
  563. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  564. if ms.LoadMessageInfo() == nil {
  565. ms.StoreMessageInfo(mi)
  566. }
  567. return ms
  568. }
  569. return mi.MessageOf(x)
  570. }
  571. // Deprecated: Use RandomNicknameReply.ProtoReflect.Descriptor instead.
  572. func (*RandomNicknameReply) Descriptor() ([]byte, []int) {
  573. return file_account_proto_rawDescGZIP(), []int{11}
  574. }
  575. func (x *RandomNicknameReply) GetNickname() string {
  576. if x != nil {
  577. return x.Nickname
  578. }
  579. return ""
  580. }
  581. type RandomAvatarReply struct {
  582. state protoimpl.MessageState
  583. sizeCache protoimpl.SizeCache
  584. unknownFields protoimpl.UnknownFields
  585. AvatarUrl string `protobuf:"bytes,1,opt,name=avatarUrl,proto3" json:"avatarUrl"`
  586. }
  587. func (x *RandomAvatarReply) Reset() {
  588. *x = RandomAvatarReply{}
  589. if protoimpl.UnsafeEnabled {
  590. mi := &file_account_proto_msgTypes[12]
  591. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  592. ms.StoreMessageInfo(mi)
  593. }
  594. }
  595. func (x *RandomAvatarReply) String() string {
  596. return protoimpl.X.MessageStringOf(x)
  597. }
  598. func (*RandomAvatarReply) ProtoMessage() {}
  599. func (x *RandomAvatarReply) ProtoReflect() protoreflect.Message {
  600. mi := &file_account_proto_msgTypes[12]
  601. if protoimpl.UnsafeEnabled && x != nil {
  602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  603. if ms.LoadMessageInfo() == nil {
  604. ms.StoreMessageInfo(mi)
  605. }
  606. return ms
  607. }
  608. return mi.MessageOf(x)
  609. }
  610. // Deprecated: Use RandomAvatarReply.ProtoReflect.Descriptor instead.
  611. func (*RandomAvatarReply) Descriptor() ([]byte, []int) {
  612. return file_account_proto_rawDescGZIP(), []int{12}
  613. }
  614. func (x *RandomAvatarReply) GetAvatarUrl() string {
  615. if x != nil {
  616. return x.AvatarUrl
  617. }
  618. return ""
  619. }
  620. type RandomAvatarListReply struct {
  621. state protoimpl.MessageState
  622. sizeCache protoimpl.SizeCache
  623. unknownFields protoimpl.UnknownFields
  624. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  625. }
  626. func (x *RandomAvatarListReply) Reset() {
  627. *x = RandomAvatarListReply{}
  628. if protoimpl.UnsafeEnabled {
  629. mi := &file_account_proto_msgTypes[13]
  630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  631. ms.StoreMessageInfo(mi)
  632. }
  633. }
  634. func (x *RandomAvatarListReply) String() string {
  635. return protoimpl.X.MessageStringOf(x)
  636. }
  637. func (*RandomAvatarListReply) ProtoMessage() {}
  638. func (x *RandomAvatarListReply) ProtoReflect() protoreflect.Message {
  639. mi := &file_account_proto_msgTypes[13]
  640. if protoimpl.UnsafeEnabled && x != nil {
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. if ms.LoadMessageInfo() == nil {
  643. ms.StoreMessageInfo(mi)
  644. }
  645. return ms
  646. }
  647. return mi.MessageOf(x)
  648. }
  649. // Deprecated: Use RandomAvatarListReply.ProtoReflect.Descriptor instead.
  650. func (*RandomAvatarListReply) Descriptor() ([]byte, []int) {
  651. return file_account_proto_rawDescGZIP(), []int{13}
  652. }
  653. func (x *RandomAvatarListReply) GetList() []string {
  654. if x != nil {
  655. return x.List
  656. }
  657. return nil
  658. }
  659. type OpenIDAndAppIDRequest struct {
  660. state protoimpl.MessageState
  661. sizeCache protoimpl.SizeCache
  662. unknownFields protoimpl.UnknownFields
  663. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"`
  664. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId"`
  665. }
  666. func (x *OpenIDAndAppIDRequest) Reset() {
  667. *x = OpenIDAndAppIDRequest{}
  668. if protoimpl.UnsafeEnabled {
  669. mi := &file_account_proto_msgTypes[14]
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. ms.StoreMessageInfo(mi)
  672. }
  673. }
  674. func (x *OpenIDAndAppIDRequest) String() string {
  675. return protoimpl.X.MessageStringOf(x)
  676. }
  677. func (*OpenIDAndAppIDRequest) ProtoMessage() {}
  678. func (x *OpenIDAndAppIDRequest) ProtoReflect() protoreflect.Message {
  679. mi := &file_account_proto_msgTypes[14]
  680. if protoimpl.UnsafeEnabled && x != nil {
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. if ms.LoadMessageInfo() == nil {
  683. ms.StoreMessageInfo(mi)
  684. }
  685. return ms
  686. }
  687. return mi.MessageOf(x)
  688. }
  689. // Deprecated: Use OpenIDAndAppIDRequest.ProtoReflect.Descriptor instead.
  690. func (*OpenIDAndAppIDRequest) Descriptor() ([]byte, []int) {
  691. return file_account_proto_rawDescGZIP(), []int{14}
  692. }
  693. func (x *OpenIDAndAppIDRequest) GetOpenId() string {
  694. if x != nil {
  695. return x.OpenId
  696. }
  697. return ""
  698. }
  699. func (x *OpenIDAndAppIDRequest) GetAppId() string {
  700. if x != nil {
  701. return x.AppId
  702. }
  703. return ""
  704. }
  705. type IdentityInfo struct {
  706. state protoimpl.MessageState
  707. sizeCache protoimpl.SizeCache
  708. unknownFields protoimpl.UnknownFields
  709. Pid string `protobuf:"bytes,1,opt,name=pid,proto3" json:"pid"`
  710. }
  711. func (x *IdentityInfo) Reset() {
  712. *x = IdentityInfo{}
  713. if protoimpl.UnsafeEnabled {
  714. mi := &file_account_proto_msgTypes[15]
  715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  716. ms.StoreMessageInfo(mi)
  717. }
  718. }
  719. func (x *IdentityInfo) String() string {
  720. return protoimpl.X.MessageStringOf(x)
  721. }
  722. func (*IdentityInfo) ProtoMessage() {}
  723. func (x *IdentityInfo) ProtoReflect() protoreflect.Message {
  724. mi := &file_account_proto_msgTypes[15]
  725. if protoimpl.UnsafeEnabled && x != nil {
  726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  727. if ms.LoadMessageInfo() == nil {
  728. ms.StoreMessageInfo(mi)
  729. }
  730. return ms
  731. }
  732. return mi.MessageOf(x)
  733. }
  734. // Deprecated: Use IdentityInfo.ProtoReflect.Descriptor instead.
  735. func (*IdentityInfo) Descriptor() ([]byte, []int) {
  736. return file_account_proto_rawDescGZIP(), []int{15}
  737. }
  738. func (x *IdentityInfo) GetPid() string {
  739. if x != nil {
  740. return x.Pid
  741. }
  742. return ""
  743. }
  744. type UserInfoDB struct {
  745. state protoimpl.MessageState
  746. sizeCache protoimpl.SizeCache
  747. unknownFields protoimpl.UnknownFields
  748. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  749. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  750. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  751. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  752. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  753. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  754. }
  755. func (x *UserInfoDB) Reset() {
  756. *x = UserInfoDB{}
  757. if protoimpl.UnsafeEnabled {
  758. mi := &file_account_proto_msgTypes[16]
  759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  760. ms.StoreMessageInfo(mi)
  761. }
  762. }
  763. func (x *UserInfoDB) String() string {
  764. return protoimpl.X.MessageStringOf(x)
  765. }
  766. func (*UserInfoDB) ProtoMessage() {}
  767. func (x *UserInfoDB) ProtoReflect() protoreflect.Message {
  768. mi := &file_account_proto_msgTypes[16]
  769. if protoimpl.UnsafeEnabled && x != nil {
  770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  771. if ms.LoadMessageInfo() == nil {
  772. ms.StoreMessageInfo(mi)
  773. }
  774. return ms
  775. }
  776. return mi.MessageOf(x)
  777. }
  778. // Deprecated: Use UserInfoDB.ProtoReflect.Descriptor instead.
  779. func (*UserInfoDB) Descriptor() ([]byte, []int) {
  780. return file_account_proto_rawDescGZIP(), []int{16}
  781. }
  782. func (x *UserInfoDB) GetId() string {
  783. if x != nil {
  784. return x.Id
  785. }
  786. return ""
  787. }
  788. func (x *UserInfoDB) GetNickname() string {
  789. if x != nil {
  790. return x.Nickname
  791. }
  792. return ""
  793. }
  794. func (x *UserInfoDB) GetAvatarUrl() string {
  795. if x != nil {
  796. return x.AvatarUrl
  797. }
  798. return ""
  799. }
  800. func (x *UserInfoDB) GetPhone() string {
  801. if x != nil {
  802. return x.Phone
  803. }
  804. return ""
  805. }
  806. func (x *UserInfoDB) GetSex() int64 {
  807. if x != nil {
  808. return x.Sex
  809. }
  810. return 0
  811. }
  812. func (x *UserInfoDB) GetCredit() int64 {
  813. if x != nil {
  814. return x.Credit
  815. }
  816. return 0
  817. }
  818. type PartnerInfoDB struct {
  819. state protoimpl.MessageState
  820. sizeCache protoimpl.SizeCache
  821. unknownFields protoimpl.UnknownFields
  822. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  823. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  824. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  825. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  826. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  827. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  828. }
  829. func (x *PartnerInfoDB) Reset() {
  830. *x = PartnerInfoDB{}
  831. if protoimpl.UnsafeEnabled {
  832. mi := &file_account_proto_msgTypes[17]
  833. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  834. ms.StoreMessageInfo(mi)
  835. }
  836. }
  837. func (x *PartnerInfoDB) String() string {
  838. return protoimpl.X.MessageStringOf(x)
  839. }
  840. func (*PartnerInfoDB) ProtoMessage() {}
  841. func (x *PartnerInfoDB) ProtoReflect() protoreflect.Message {
  842. mi := &file_account_proto_msgTypes[17]
  843. if protoimpl.UnsafeEnabled && x != nil {
  844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  845. if ms.LoadMessageInfo() == nil {
  846. ms.StoreMessageInfo(mi)
  847. }
  848. return ms
  849. }
  850. return mi.MessageOf(x)
  851. }
  852. // Deprecated: Use PartnerInfoDB.ProtoReflect.Descriptor instead.
  853. func (*PartnerInfoDB) Descriptor() ([]byte, []int) {
  854. return file_account_proto_rawDescGZIP(), []int{17}
  855. }
  856. func (x *PartnerInfoDB) GetId() string {
  857. if x != nil {
  858. return x.Id
  859. }
  860. return ""
  861. }
  862. func (x *PartnerInfoDB) GetNickname() string {
  863. if x != nil {
  864. return x.Nickname
  865. }
  866. return ""
  867. }
  868. func (x *PartnerInfoDB) GetAvatarUrl() string {
  869. if x != nil {
  870. return x.AvatarUrl
  871. }
  872. return ""
  873. }
  874. func (x *PartnerInfoDB) GetPhone() string {
  875. if x != nil {
  876. return x.Phone
  877. }
  878. return ""
  879. }
  880. func (x *PartnerInfoDB) GetSex() int64 {
  881. if x != nil {
  882. return x.Sex
  883. }
  884. return 0
  885. }
  886. func (x *PartnerInfoDB) GetCredit() int64 {
  887. if x != nil {
  888. return x.Credit
  889. }
  890. return 0
  891. }
  892. type AuthorizationRequest struct {
  893. state protoimpl.MessageState
  894. sizeCache protoimpl.SizeCache
  895. unknownFields protoimpl.UnknownFields
  896. JsCode string `protobuf:"bytes,1,opt,name=jsCode,proto3" json:"jsCode"`
  897. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId"`
  898. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"`
  899. FromOpenId string `protobuf:"bytes,4,opt,name=fromOpenId,proto3" json:"fromOpenId"`
  900. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"`
  901. }
  902. func (x *AuthorizationRequest) Reset() {
  903. *x = AuthorizationRequest{}
  904. if protoimpl.UnsafeEnabled {
  905. mi := &file_account_proto_msgTypes[18]
  906. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  907. ms.StoreMessageInfo(mi)
  908. }
  909. }
  910. func (x *AuthorizationRequest) String() string {
  911. return protoimpl.X.MessageStringOf(x)
  912. }
  913. func (*AuthorizationRequest) ProtoMessage() {}
  914. func (x *AuthorizationRequest) ProtoReflect() protoreflect.Message {
  915. mi := &file_account_proto_msgTypes[18]
  916. if protoimpl.UnsafeEnabled && x != nil {
  917. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  918. if ms.LoadMessageInfo() == nil {
  919. ms.StoreMessageInfo(mi)
  920. }
  921. return ms
  922. }
  923. return mi.MessageOf(x)
  924. }
  925. // Deprecated: Use AuthorizationRequest.ProtoReflect.Descriptor instead.
  926. func (*AuthorizationRequest) Descriptor() ([]byte, []int) {
  927. return file_account_proto_rawDescGZIP(), []int{18}
  928. }
  929. func (x *AuthorizationRequest) GetJsCode() string {
  930. if x != nil {
  931. return x.JsCode
  932. }
  933. return ""
  934. }
  935. func (x *AuthorizationRequest) GetAppId() string {
  936. if x != nil {
  937. return x.AppId
  938. }
  939. return ""
  940. }
  941. func (x *AuthorizationRequest) GetType() string {
  942. if x != nil {
  943. return x.Type
  944. }
  945. return ""
  946. }
  947. func (x *AuthorizationRequest) GetFromOpenId() string {
  948. if x != nil {
  949. return x.FromOpenId
  950. }
  951. return ""
  952. }
  953. func (x *AuthorizationRequest) GetSex() int64 {
  954. if x != nil {
  955. return x.Sex
  956. }
  957. return 0
  958. }
  959. type TokenReply struct {
  960. state protoimpl.MessageState
  961. sizeCache protoimpl.SizeCache
  962. unknownFields protoimpl.UnknownFields
  963. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token"`
  964. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId"`
  965. }
  966. func (x *TokenReply) Reset() {
  967. *x = TokenReply{}
  968. if protoimpl.UnsafeEnabled {
  969. mi := &file_account_proto_msgTypes[19]
  970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  971. ms.StoreMessageInfo(mi)
  972. }
  973. }
  974. func (x *TokenReply) String() string {
  975. return protoimpl.X.MessageStringOf(x)
  976. }
  977. func (*TokenReply) ProtoMessage() {}
  978. func (x *TokenReply) ProtoReflect() protoreflect.Message {
  979. mi := &file_account_proto_msgTypes[19]
  980. if protoimpl.UnsafeEnabled && x != nil {
  981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  982. if ms.LoadMessageInfo() == nil {
  983. ms.StoreMessageInfo(mi)
  984. }
  985. return ms
  986. }
  987. return mi.MessageOf(x)
  988. }
  989. // Deprecated: Use TokenReply.ProtoReflect.Descriptor instead.
  990. func (*TokenReply) Descriptor() ([]byte, []int) {
  991. return file_account_proto_rawDescGZIP(), []int{19}
  992. }
  993. func (x *TokenReply) GetToken() string {
  994. if x != nil {
  995. return x.Token
  996. }
  997. return ""
  998. }
  999. func (x *TokenReply) GetAppId() string {
  1000. if x != nil {
  1001. return x.AppId
  1002. }
  1003. return ""
  1004. }
  1005. type DebugLoginRequest struct {
  1006. state protoimpl.MessageState
  1007. sizeCache protoimpl.SizeCache
  1008. unknownFields protoimpl.UnknownFields
  1009. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1010. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  1011. }
  1012. func (x *DebugLoginRequest) Reset() {
  1013. *x = DebugLoginRequest{}
  1014. if protoimpl.UnsafeEnabled {
  1015. mi := &file_account_proto_msgTypes[20]
  1016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1017. ms.StoreMessageInfo(mi)
  1018. }
  1019. }
  1020. func (x *DebugLoginRequest) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*DebugLoginRequest) ProtoMessage() {}
  1024. func (x *DebugLoginRequest) ProtoReflect() protoreflect.Message {
  1025. mi := &file_account_proto_msgTypes[20]
  1026. if protoimpl.UnsafeEnabled && x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use DebugLoginRequest.ProtoReflect.Descriptor instead.
  1036. func (*DebugLoginRequest) Descriptor() ([]byte, []int) {
  1037. return file_account_proto_rawDescGZIP(), []int{20}
  1038. }
  1039. func (x *DebugLoginRequest) GetId() int64 {
  1040. if x != nil {
  1041. return x.Id
  1042. }
  1043. return 0
  1044. }
  1045. func (x *DebugLoginRequest) GetCode() string {
  1046. if x != nil {
  1047. return x.Code
  1048. }
  1049. return ""
  1050. }
  1051. type LoginToken struct {
  1052. state protoimpl.MessageState
  1053. sizeCache protoimpl.SizeCache
  1054. unknownFields protoimpl.UnknownFields
  1055. Pid string `protobuf:"bytes,1,opt,name=pid,proto3" json:"pid"`
  1056. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"`
  1057. }
  1058. func (x *LoginToken) Reset() {
  1059. *x = LoginToken{}
  1060. if protoimpl.UnsafeEnabled {
  1061. mi := &file_account_proto_msgTypes[21]
  1062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. }
  1066. func (x *LoginToken) String() string {
  1067. return protoimpl.X.MessageStringOf(x)
  1068. }
  1069. func (*LoginToken) ProtoMessage() {}
  1070. func (x *LoginToken) ProtoReflect() protoreflect.Message {
  1071. mi := &file_account_proto_msgTypes[21]
  1072. if protoimpl.UnsafeEnabled && x != nil {
  1073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1074. if ms.LoadMessageInfo() == nil {
  1075. ms.StoreMessageInfo(mi)
  1076. }
  1077. return ms
  1078. }
  1079. return mi.MessageOf(x)
  1080. }
  1081. // Deprecated: Use LoginToken.ProtoReflect.Descriptor instead.
  1082. func (*LoginToken) Descriptor() ([]byte, []int) {
  1083. return file_account_proto_rawDescGZIP(), []int{21}
  1084. }
  1085. func (x *LoginToken) GetPid() string {
  1086. if x != nil {
  1087. return x.Pid
  1088. }
  1089. return ""
  1090. }
  1091. func (x *LoginToken) GetType() string {
  1092. if x != nil {
  1093. return x.Type
  1094. }
  1095. return ""
  1096. }
  1097. var File_account_proto protoreflect.FileDescriptor
  1098. var file_account_proto_rawDesc = []byte{
  1099. 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  1100. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x1c, 0x67, 0x6f,
  1101. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  1102. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f,
  1103. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72,
  1104. 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74,
  1105. 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1106. 0x22, 0x53, 0x0a, 0x21, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53, 0x75,
  1107. 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  1108. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18,
  1109. 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a,
  1110. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  1111. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x4e, 0x0a, 0x2c, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65,
  1112. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  1113. 0x41, 0x6e, 0x64, 0x49, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65,
  1114. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1115. 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1116. 0x6e, 0x74, 0x49, 0x64, 0x73, 0x22, 0x6a, 0x0a, 0x2a, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65,
  1117. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  1118. 0x41, 0x6e, 0x64, 0x49, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65,
  1119. 0x70, 0x6c, 0x79, 0x12, 0x3c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1120. 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e,
  1121. 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63,
  1122. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  1123. 0x74, 0x22, 0x69, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1124. 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x49, 0x6e, 0x66, 0x6f,
  1125. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1126. 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69,
  1127. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1c,
  1128. 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1129. 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x90, 0x03, 0x0a,
  1130. 0x14, 0x47, 0x65, 0x74, 0x47, 0x65, 0x74, 0x47, 0x7a, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  1131. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01,
  1132. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1133. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1134. 0x1a, 0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  1135. 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x2a, 0x0a, 0x10, 0x70,
  1136. 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x55, 0x72, 0x6c, 0x18,
  1137. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x50, 0x6f,
  1138. 0x6c, 0x69, 0x63, 0x79, 0x55, 0x72, 0x6c, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x41,
  1139. 0x67, 0x72, 0x65, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28,
  1140. 0x09, 0x52, 0x10, 0x75, 0x73, 0x65, 0x72, 0x41, 0x67, 0x72, 0x65, 0x65, 0x6d, 0x65, 0x6e, 0x74,
  1141. 0x55, 0x72, 0x6c, 0x12, 0x3a, 0x0a, 0x18, 0x6e, 0x6f, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
  1142. 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x18,
  1143. 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x18, 0x6e, 0x6f, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
  1144. 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12,
  1145. 0x3a, 0x0a, 0x18, 0x63, 0x68, 0x61, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1146. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28,
  1147. 0x09, 0x52, 0x18, 0x63, 0x68, 0x61, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1148. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x42, 0x0a, 0x1c, 0x72,
  1149. 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1150. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28,
  1151. 0x09, 0x52, 0x1c, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63,
  1152. 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12,
  1153. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20,
  1154. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x55, 0x72, 0x6c, 0x22,
  1155. 0x53, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42, 0x79,
  1156. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1157. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  1158. 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x14,
  1159. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  1160. 0x70, 0x70, 0x69, 0x64, 0x22, 0x4b, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1161. 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65,
  1162. 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20,
  1163. 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
  1164. 0x70, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69,
  1165. 0x64, 0x22, 0x26, 0x0a, 0x10, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65,
  1166. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20,
  1167. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x22, 0x28, 0x0a, 0x0e, 0x43, 0x68, 0x65,
  1168. 0x63, 0x6b, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x69,
  1169. 0x73, 0x50, 0x61, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x50,
  1170. 0x61, 0x73, 0x73, 0x22, 0x23, 0x0a, 0x07, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x44, 0x12, 0x18,
  1171. 0x0a, 0x07, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1172. 0x07, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x0c, 0x4d, 0x61, 0x74, 0x65,
  1173. 0x72, 0x69, 0x61, 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b,
  1174. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x31, 0x0a, 0x13,
  1175. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65,
  1176. 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1177. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x22,
  1178. 0x31, 0x0a, 0x11, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52,
  1179. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  1180. 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1181. 0x72, 0x6c, 0x22, 0x2b, 0x0a, 0x15, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74,
  1182. 0x61, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6c,
  1183. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  1184. 0x45, 0x0a, 0x15, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49,
  1185. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  1186. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  1187. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1188. 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x22, 0x20, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
  1189. 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20,
  1190. 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0x96, 0x01, 0x0a, 0x0a, 0x55, 0x73, 0x65,
  1191. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  1192. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  1193. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  1194. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  1195. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  1196. 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1197. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05,
  1198. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65,
  1199. 0x64, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  1200. 0x74, 0x22, 0x99, 0x01, 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,
  1201. 0x6f, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1202. 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1203. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1204. 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01,
  1205. 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a,
  1206. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
  1207. 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  1208. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  1209. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x8a, 0x01,
  1210. 0x0a, 0x14, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  1211. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6a, 0x73, 0x43, 0x6f, 0x64, 0x65,
  1212. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6a, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14,
  1213. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  1214. 0x70, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
  1215. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d,
  1216. 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72,
  1217. 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  1218. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x38, 0x0a, 0x0a, 0x54, 0x6f,
  1219. 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65,
  1220. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14,
  1221. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  1222. 0x70, 0x70, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x11, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4c, 0x6f, 0x67,
  1223. 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1224. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
  1225. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x32, 0x0a,
  1226. 0x0a, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x70,
  1227. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x12, 0x0a,
  1228. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  1229. 0x65, 0x32, 0xce, 0x12, 0x0a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x62, 0x0a,
  1230. 0x0a, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1e, 0x2e, 0x61, 0x70,
  1231. 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4c,
  1232. 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70,
  1233. 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
  1234. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61,
  1235. 0x70, 0x69, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x3a, 0x01,
  1236. 0x2a, 0x12, 0x70, 0x0a, 0x0d, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69,
  1237. 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1238. 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  1239. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f,
  1240. 0x75, 0x6e, 0x74, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23,
  1241. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6c, 0x6f, 0x67,
  1242. 0x69, 0x6e, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1243. 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x0e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63,
  1244. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1245. 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1246. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69,
  1247. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4,
  1248. 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1249. 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  1250. 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0c, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61,
  1251. 0x74, 0x61, 0x72, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1252. 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63,
  1253. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74,
  1254. 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22,
  1255. 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e,
  1256. 0x64, 0x6f, 0x6d, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a,
  1257. 0x0f, 0x47, 0x65, 0x74, 0x47, 0x65, 0x74, 0x47, 0x7a, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  1258. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1259. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  1260. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x47, 0x65, 0x74, 0x47, 0x7a, 0x68,
  1261. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  1262. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f,
  1263. 0x67, 0x7a, 0x68, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x8f, 0x01, 0x0a, 0x1a,
  1264. 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
  1265. 0x69, 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69,
  1266. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  1267. 0x69, 0x63, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73,
  1268. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1269. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1270. 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  1271. 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1272. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x4c, 0x0a,
  1273. 0x10, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x4c, 0x69, 0x73,
  1274. 0x74, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  1275. 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f,
  1276. 0x75, 0x6e, 0x74, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  1277. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x1b, 0x47,
  1278. 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x4f, 0x70, 0x65, 0x6e,
  1279. 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69,
  1280. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41,
  1281. 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19,
  1282. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x49, 0x64, 0x65,
  1283. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x65, 0x0a, 0x24, 0x47, 0x65, 0x74,
  1284. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44,
  1285. 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74,
  1286. 0x65, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e,
  1287. 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x52, 0x65,
  1288. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f,
  1289. 0x75, 0x6e, 0x74, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  1290. 0x12, 0x40, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42,
  1291. 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1292. 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1293. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1294. 0x6c, 0x79, 0x12, 0x3a, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x73, 0x42, 0x79,
  1295. 0x49, 0x44, 0x73, 0x12, 0x0f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1296. 0x2e, 0x49, 0x64, 0x73, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1297. 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x70,
  1298. 0x0a, 0x0f, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1299. 0x65, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  1300. 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1301. 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  1302. 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  1303. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e,
  1304. 0x64, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x3a, 0x01, 0x2a,
  1305. 0x12, 0x74, 0x0a, 0x13, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
  1306. 0x61, 0x6c, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63,
  1307. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x49, 0x44, 0x1a, 0x19, 0x2e,
  1308. 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4d, 0x61, 0x74, 0x65,
  1309. 0x72, 0x69, 0x61, 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26,
  1310. 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61,
  1311. 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2f, 0x76, 0x6f,
  1312. 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x41, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65,
  1313. 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1314. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1315. 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1316. 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0d, 0x46, 0x69, 0x6e,
  1317. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  1318. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  1319. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  1320. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  1321. 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0a, 0x52, 0x61, 0x6e,
  1322. 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1323. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a,
  1324. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  1325. 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x12,
  1326. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1327. 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1328. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a,
  1329. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d,
  1330. 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x49, 0x0a,
  1331. 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x65, 0x78, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69,
  1332. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x65,
  1333. 0x78, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1334. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x65, 0x78,
  1335. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x55,
  1336. 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x21,
  1337. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x4c,
  1338. 0x6f, 0x67, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1339. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47,
  1340. 0x65, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x70,
  1341. 0x6c, 0x79, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69,
  1342. 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a,
  1343. 0x12, 0x70, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42,
  1344. 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69,
  1345. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e,
  1346. 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52,
  1347. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63,
  1348. 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1349. 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1350. 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x24, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  1351. 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x49,
  1352. 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69,
  1353. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e,
  1354. 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52,
  1355. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63,
  1356. 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79,
  1357. 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1358. 0x22, 0x00, 0x12, 0x9d, 0x01, 0x0a, 0x25, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65, 0x6e, 0x74,
  1359. 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x41, 0x6e,
  1360. 0x64, 0x49, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x39, 0x2e, 0x61,
  1361. 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x49,
  1362. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1363. 0x49, 0x44, 0x41, 0x6e, 0x64, 0x49, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1364. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63,
  1365. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
  1366. 0x66, 0x79, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x41, 0x6e, 0x64,
  1367. 0x49, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1368. 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
  1369. 0x69, 0x62, 0x65, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  1370. 0x74, 0x2e, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44,
  1371. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1372. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1373. 0x00, 0x12, 0x4f, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63,
  1374. 0x72, 0x69, 0x62, 0x65, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1375. 0x6e, 0x74, 0x2e, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49,
  1376. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1377. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1378. 0x22, 0x00, 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  1379. 0x74, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e,
  1380. 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72,
  1381. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1382. 0x6e, 0x74, 0x3b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  1383. 0x6f, 0x33,
  1384. }
  1385. var (
  1386. file_account_proto_rawDescOnce sync.Once
  1387. file_account_proto_rawDescData = file_account_proto_rawDesc
  1388. )
  1389. func file_account_proto_rawDescGZIP() []byte {
  1390. file_account_proto_rawDescOnce.Do(func() {
  1391. file_account_proto_rawDescData = protoimpl.X.CompressGZIP(file_account_proto_rawDescData)
  1392. })
  1393. return file_account_proto_rawDescData
  1394. }
  1395. var file_account_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
  1396. var file_account_proto_goTypes = []interface{}{
  1397. (*StatisticsSubscribeMessageRequest)(nil), // 0: api.account.StatisticsSubscribeMessageRequest
  1398. (*FindIdentifyByAccountIDAndIsSubscribeRequest)(nil), // 1: api.account.FindIdentifyByAccountIDAndIsSubscribeRequest
  1399. (*FindIdentifyByAccountIDAndIsSubscribeReply)(nil), // 2: api.account.FindIdentifyByAccountIDAndIsSubscribeReply
  1400. (*FindIdentifyByAccountIDInfo)(nil), // 3: api.account.FindIdentifyByAccountIDInfo
  1401. (*GetGetGzhConfigReply)(nil), // 4: api.account.GetGetGzhConfigReply
  1402. (*GetIdentifyByAccountIDRequest)(nil), // 5: api.account.GetIdentifyByAccountIDRequest
  1403. (*GetIdentifyByAccountIDReply)(nil), // 6: api.account.GetIdentifyByAccountIDReply
  1404. (*CheckTextRequest)(nil), // 7: api.account.CheckTextRequest
  1405. (*CheckTextReply)(nil), // 8: api.account.CheckTextReply
  1406. (*MediaID)(nil), // 9: api.account.MediaID
  1407. (*MaterialLink)(nil), // 10: api.account.MaterialLink
  1408. (*RandomNicknameReply)(nil), // 11: api.account.RandomNicknameReply
  1409. (*RandomAvatarReply)(nil), // 12: api.account.RandomAvatarReply
  1410. (*RandomAvatarListReply)(nil), // 13: api.account.RandomAvatarListReply
  1411. (*OpenIDAndAppIDRequest)(nil), // 14: api.account.OpenIDAndAppIDRequest
  1412. (*IdentityInfo)(nil), // 15: api.account.IdentityInfo
  1413. (*UserInfoDB)(nil), // 16: api.account.UserInfoDB
  1414. (*PartnerInfoDB)(nil), // 17: api.account.PartnerInfoDB
  1415. (*AuthorizationRequest)(nil), // 18: api.account.AuthorizationRequest
  1416. (*TokenReply)(nil), // 19: api.account.TokenReply
  1417. (*DebugLoginRequest)(nil), // 20: api.account.DebugLoginRequest
  1418. (*LoginToken)(nil), // 21: api.account.LoginToken
  1419. (*common.SexReq)(nil), // 22: api.common.SexReq
  1420. (*emptypb.Empty)(nil), // 23: google.protobuf.Empty
  1421. (*common.Ids)(nil), // 24: api.common.Ids
  1422. (*common.MemeRequest)(nil), // 25: api.common.MemeRequest
  1423. (*common.FindChatTopicRequest)(nil), // 26: api.common.FindChatTopicRequest
  1424. (*common.RandomNum)(nil), // 27: api.common.RandomNum
  1425. (*common.RandomNumAndSex)(nil), // 28: api.common.RandomNumAndSex
  1426. (*common.GetLoginConfigRequest)(nil), // 29: api.common.GetLoginConfigRequest
  1427. (*common.TagListReply)(nil), // 30: api.common.TagListReply
  1428. (*common.RandomIntroduceReply)(nil), // 31: api.common.RandomIntroduceReply
  1429. (*common.MemeList)(nil), // 32: api.common.MemeList
  1430. (*common.ChatTopicList)(nil), // 33: api.common.ChatTopicList
  1431. (*common.CommonTextList)(nil), // 34: api.common.CommonTextList
  1432. (*common.GetLoginConfigReply)(nil), // 35: api.common.GetLoginConfigReply
  1433. }
  1434. var file_account_proto_depIdxs = []int32{
  1435. 3, // 0: api.account.FindIdentifyByAccountIDAndIsSubscribeReply.list:type_name -> api.account.FindIdentifyByAccountIDInfo
  1436. 20, // 1: api.account.Account.DebugLogin:input_type -> api.account.DebugLoginRequest
  1437. 18, // 2: api.account.Account.Authorization:input_type -> api.account.AuthorizationRequest
  1438. 22, // 3: api.account.Account.RandomNickname:input_type -> api.common.SexReq
  1439. 22, // 4: api.account.Account.RandomAvatar:input_type -> api.common.SexReq
  1440. 23, // 5: api.account.Account.GetGetGzhConfig:input_type -> google.protobuf.Empty
  1441. 0, // 6: api.account.Account.StatisticsSubscribeMessage:input_type -> api.account.StatisticsSubscribeMessageRequest
  1442. 22, // 7: api.account.Account.RandomAvatarList:input_type -> api.common.SexReq
  1443. 14, // 8: api.account.Account.GetIdentityByOpenIDAndAppID:input_type -> api.account.OpenIDAndAppIDRequest
  1444. 14, // 9: api.account.Account.GetIdentityByOpenIDAndAppIDAndCreate:input_type -> api.account.OpenIDAndAppIDRequest
  1445. 22, // 10: api.account.Account.FindTagListBySex:input_type -> api.common.SexReq
  1446. 24, // 11: api.account.Account.FindTagsByIDs:input_type -> api.common.Ids
  1447. 22, // 12: api.account.Account.RandomIntroduce:input_type -> api.common.SexReq
  1448. 9, // 13: api.account.Account.UploadMaterialVoice:input_type -> api.account.MediaID
  1449. 25, // 14: api.account.Account.FindMemeByType:input_type -> api.common.MemeRequest
  1450. 26, // 15: api.account.Account.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  1451. 27, // 16: api.account.Account.RandomMeme:input_type -> api.common.RandomNum
  1452. 28, // 17: api.account.Account.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  1453. 7, // 18: api.account.Account.CheckText:input_type -> api.account.CheckTextRequest
  1454. 29, // 19: api.account.Account.GetUserLoginConfig:input_type -> api.common.GetLoginConfigRequest
  1455. 5, // 20: api.account.Account.GetIdentifyByAccountID:input_type -> api.account.GetIdentifyByAccountIDRequest
  1456. 5, // 21: api.account.Account.GetIdentifyByAccountIDAndIsSubscribe:input_type -> api.account.GetIdentifyByAccountIDRequest
  1457. 1, // 22: api.account.Account.FindIdentifyByAccountIDAndIsSubscribe:input_type -> api.account.FindIdentifyByAccountIDAndIsSubscribeRequest
  1458. 14, // 23: api.account.Account.UserSubscribe:input_type -> api.account.OpenIDAndAppIDRequest
  1459. 14, // 24: api.account.Account.UserUnsubscribe:input_type -> api.account.OpenIDAndAppIDRequest
  1460. 19, // 25: api.account.Account.DebugLogin:output_type -> api.account.TokenReply
  1461. 19, // 26: api.account.Account.Authorization:output_type -> api.account.TokenReply
  1462. 11, // 27: api.account.Account.RandomNickname:output_type -> api.account.RandomNicknameReply
  1463. 12, // 28: api.account.Account.RandomAvatar:output_type -> api.account.RandomAvatarReply
  1464. 4, // 29: api.account.Account.GetGetGzhConfig:output_type -> api.account.GetGetGzhConfigReply
  1465. 23, // 30: api.account.Account.StatisticsSubscribeMessage:output_type -> google.protobuf.Empty
  1466. 13, // 31: api.account.Account.RandomAvatarList:output_type -> api.account.RandomAvatarListReply
  1467. 15, // 32: api.account.Account.GetIdentityByOpenIDAndAppID:output_type -> api.account.IdentityInfo
  1468. 15, // 33: api.account.Account.GetIdentityByOpenIDAndAppIDAndCreate:output_type -> api.account.IdentityInfo
  1469. 30, // 34: api.account.Account.FindTagListBySex:output_type -> api.common.TagListReply
  1470. 30, // 35: api.account.Account.FindTagsByIDs:output_type -> api.common.TagListReply
  1471. 31, // 36: api.account.Account.RandomIntroduce:output_type -> api.common.RandomIntroduceReply
  1472. 10, // 37: api.account.Account.UploadMaterialVoice:output_type -> api.account.MaterialLink
  1473. 32, // 38: api.account.Account.FindMemeByType:output_type -> api.common.MemeList
  1474. 33, // 39: api.account.Account.FindChatTopic:output_type -> api.common.ChatTopicList
  1475. 34, // 40: api.account.Account.RandomMeme:output_type -> api.common.CommonTextList
  1476. 34, // 41: api.account.Account.RandomSwiftMessage:output_type -> api.common.CommonTextList
  1477. 8, // 42: api.account.Account.CheckText:output_type -> api.account.CheckTextReply
  1478. 35, // 43: api.account.Account.GetUserLoginConfig:output_type -> api.common.GetLoginConfigReply
  1479. 6, // 44: api.account.Account.GetIdentifyByAccountID:output_type -> api.account.GetIdentifyByAccountIDReply
  1480. 6, // 45: api.account.Account.GetIdentifyByAccountIDAndIsSubscribe:output_type -> api.account.GetIdentifyByAccountIDReply
  1481. 2, // 46: api.account.Account.FindIdentifyByAccountIDAndIsSubscribe:output_type -> api.account.FindIdentifyByAccountIDAndIsSubscribeReply
  1482. 23, // 47: api.account.Account.UserSubscribe:output_type -> google.protobuf.Empty
  1483. 23, // 48: api.account.Account.UserUnsubscribe:output_type -> google.protobuf.Empty
  1484. 25, // [25:49] is the sub-list for method output_type
  1485. 1, // [1:25] is the sub-list for method input_type
  1486. 1, // [1:1] is the sub-list for extension type_name
  1487. 1, // [1:1] is the sub-list for extension extendee
  1488. 0, // [0:1] is the sub-list for field type_name
  1489. }
  1490. func init() { file_account_proto_init() }
  1491. func file_account_proto_init() {
  1492. if File_account_proto != nil {
  1493. return
  1494. }
  1495. if !protoimpl.UnsafeEnabled {
  1496. file_account_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1497. switch v := v.(*StatisticsSubscribeMessageRequest); i {
  1498. case 0:
  1499. return &v.state
  1500. case 1:
  1501. return &v.sizeCache
  1502. case 2:
  1503. return &v.unknownFields
  1504. default:
  1505. return nil
  1506. }
  1507. }
  1508. file_account_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1509. switch v := v.(*FindIdentifyByAccountIDAndIsSubscribeRequest); i {
  1510. case 0:
  1511. return &v.state
  1512. case 1:
  1513. return &v.sizeCache
  1514. case 2:
  1515. return &v.unknownFields
  1516. default:
  1517. return nil
  1518. }
  1519. }
  1520. file_account_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1521. switch v := v.(*FindIdentifyByAccountIDAndIsSubscribeReply); i {
  1522. case 0:
  1523. return &v.state
  1524. case 1:
  1525. return &v.sizeCache
  1526. case 2:
  1527. return &v.unknownFields
  1528. default:
  1529. return nil
  1530. }
  1531. }
  1532. file_account_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1533. switch v := v.(*FindIdentifyByAccountIDInfo); i {
  1534. case 0:
  1535. return &v.state
  1536. case 1:
  1537. return &v.sizeCache
  1538. case 2:
  1539. return &v.unknownFields
  1540. default:
  1541. return nil
  1542. }
  1543. }
  1544. file_account_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1545. switch v := v.(*GetGetGzhConfigReply); i {
  1546. case 0:
  1547. return &v.state
  1548. case 1:
  1549. return &v.sizeCache
  1550. case 2:
  1551. return &v.unknownFields
  1552. default:
  1553. return nil
  1554. }
  1555. }
  1556. file_account_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1557. switch v := v.(*GetIdentifyByAccountIDRequest); i {
  1558. case 0:
  1559. return &v.state
  1560. case 1:
  1561. return &v.sizeCache
  1562. case 2:
  1563. return &v.unknownFields
  1564. default:
  1565. return nil
  1566. }
  1567. }
  1568. file_account_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1569. switch v := v.(*GetIdentifyByAccountIDReply); i {
  1570. case 0:
  1571. return &v.state
  1572. case 1:
  1573. return &v.sizeCache
  1574. case 2:
  1575. return &v.unknownFields
  1576. default:
  1577. return nil
  1578. }
  1579. }
  1580. file_account_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1581. switch v := v.(*CheckTextRequest); i {
  1582. case 0:
  1583. return &v.state
  1584. case 1:
  1585. return &v.sizeCache
  1586. case 2:
  1587. return &v.unknownFields
  1588. default:
  1589. return nil
  1590. }
  1591. }
  1592. file_account_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1593. switch v := v.(*CheckTextReply); i {
  1594. case 0:
  1595. return &v.state
  1596. case 1:
  1597. return &v.sizeCache
  1598. case 2:
  1599. return &v.unknownFields
  1600. default:
  1601. return nil
  1602. }
  1603. }
  1604. file_account_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1605. switch v := v.(*MediaID); i {
  1606. case 0:
  1607. return &v.state
  1608. case 1:
  1609. return &v.sizeCache
  1610. case 2:
  1611. return &v.unknownFields
  1612. default:
  1613. return nil
  1614. }
  1615. }
  1616. file_account_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1617. switch v := v.(*MaterialLink); i {
  1618. case 0:
  1619. return &v.state
  1620. case 1:
  1621. return &v.sizeCache
  1622. case 2:
  1623. return &v.unknownFields
  1624. default:
  1625. return nil
  1626. }
  1627. }
  1628. file_account_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1629. switch v := v.(*RandomNicknameReply); i {
  1630. case 0:
  1631. return &v.state
  1632. case 1:
  1633. return &v.sizeCache
  1634. case 2:
  1635. return &v.unknownFields
  1636. default:
  1637. return nil
  1638. }
  1639. }
  1640. file_account_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1641. switch v := v.(*RandomAvatarReply); i {
  1642. case 0:
  1643. return &v.state
  1644. case 1:
  1645. return &v.sizeCache
  1646. case 2:
  1647. return &v.unknownFields
  1648. default:
  1649. return nil
  1650. }
  1651. }
  1652. file_account_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1653. switch v := v.(*RandomAvatarListReply); i {
  1654. case 0:
  1655. return &v.state
  1656. case 1:
  1657. return &v.sizeCache
  1658. case 2:
  1659. return &v.unknownFields
  1660. default:
  1661. return nil
  1662. }
  1663. }
  1664. file_account_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1665. switch v := v.(*OpenIDAndAppIDRequest); i {
  1666. case 0:
  1667. return &v.state
  1668. case 1:
  1669. return &v.sizeCache
  1670. case 2:
  1671. return &v.unknownFields
  1672. default:
  1673. return nil
  1674. }
  1675. }
  1676. file_account_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1677. switch v := v.(*IdentityInfo); i {
  1678. case 0:
  1679. return &v.state
  1680. case 1:
  1681. return &v.sizeCache
  1682. case 2:
  1683. return &v.unknownFields
  1684. default:
  1685. return nil
  1686. }
  1687. }
  1688. file_account_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1689. switch v := v.(*UserInfoDB); i {
  1690. case 0:
  1691. return &v.state
  1692. case 1:
  1693. return &v.sizeCache
  1694. case 2:
  1695. return &v.unknownFields
  1696. default:
  1697. return nil
  1698. }
  1699. }
  1700. file_account_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1701. switch v := v.(*PartnerInfoDB); i {
  1702. case 0:
  1703. return &v.state
  1704. case 1:
  1705. return &v.sizeCache
  1706. case 2:
  1707. return &v.unknownFields
  1708. default:
  1709. return nil
  1710. }
  1711. }
  1712. file_account_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1713. switch v := v.(*AuthorizationRequest); i {
  1714. case 0:
  1715. return &v.state
  1716. case 1:
  1717. return &v.sizeCache
  1718. case 2:
  1719. return &v.unknownFields
  1720. default:
  1721. return nil
  1722. }
  1723. }
  1724. file_account_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  1725. switch v := v.(*TokenReply); i {
  1726. case 0:
  1727. return &v.state
  1728. case 1:
  1729. return &v.sizeCache
  1730. case 2:
  1731. return &v.unknownFields
  1732. default:
  1733. return nil
  1734. }
  1735. }
  1736. file_account_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  1737. switch v := v.(*DebugLoginRequest); i {
  1738. case 0:
  1739. return &v.state
  1740. case 1:
  1741. return &v.sizeCache
  1742. case 2:
  1743. return &v.unknownFields
  1744. default:
  1745. return nil
  1746. }
  1747. }
  1748. file_account_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  1749. switch v := v.(*LoginToken); i {
  1750. case 0:
  1751. return &v.state
  1752. case 1:
  1753. return &v.sizeCache
  1754. case 2:
  1755. return &v.unknownFields
  1756. default:
  1757. return nil
  1758. }
  1759. }
  1760. }
  1761. type x struct{}
  1762. out := protoimpl.TypeBuilder{
  1763. File: protoimpl.DescBuilder{
  1764. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1765. RawDescriptor: file_account_proto_rawDesc,
  1766. NumEnums: 0,
  1767. NumMessages: 22,
  1768. NumExtensions: 0,
  1769. NumServices: 1,
  1770. },
  1771. GoTypes: file_account_proto_goTypes,
  1772. DependencyIndexes: file_account_proto_depIdxs,
  1773. MessageInfos: file_account_proto_msgTypes,
  1774. }.Build()
  1775. File_account_proto = out.File
  1776. file_account_proto_rawDesc = nil
  1777. file_account_proto_goTypes = nil
  1778. file_account_proto_depIdxs = nil
  1779. }