account.pb.go 66 KB

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