account.pb.go 77 KB

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