account.pb.go 73 KB

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