account.pb.go 89 KB

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