account.pb.go 88 KB

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