account.pb.go 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  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. reflect "reflect"
  13. sync "sync"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type RandomNicknameReply struct {
  22. state protoimpl.MessageState
  23. sizeCache protoimpl.SizeCache
  24. unknownFields protoimpl.UnknownFields
  25. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"`
  26. }
  27. func (x *RandomNicknameReply) Reset() {
  28. *x = RandomNicknameReply{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_account_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *RandomNicknameReply) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*RandomNicknameReply) ProtoMessage() {}
  39. func (x *RandomNicknameReply) ProtoReflect() protoreflect.Message {
  40. mi := &file_account_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use RandomNicknameReply.ProtoReflect.Descriptor instead.
  51. func (*RandomNicknameReply) Descriptor() ([]byte, []int) {
  52. return file_account_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *RandomNicknameReply) GetNickname() string {
  55. if x != nil {
  56. return x.Nickname
  57. }
  58. return ""
  59. }
  60. type RandomAvatarReply struct {
  61. state protoimpl.MessageState
  62. sizeCache protoimpl.SizeCache
  63. unknownFields protoimpl.UnknownFields
  64. AvatarUrl string `protobuf:"bytes,1,opt,name=avatarUrl,proto3" json:"avatarUrl"`
  65. }
  66. func (x *RandomAvatarReply) Reset() {
  67. *x = RandomAvatarReply{}
  68. if protoimpl.UnsafeEnabled {
  69. mi := &file_account_proto_msgTypes[1]
  70. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  71. ms.StoreMessageInfo(mi)
  72. }
  73. }
  74. func (x *RandomAvatarReply) String() string {
  75. return protoimpl.X.MessageStringOf(x)
  76. }
  77. func (*RandomAvatarReply) ProtoMessage() {}
  78. func (x *RandomAvatarReply) ProtoReflect() protoreflect.Message {
  79. mi := &file_account_proto_msgTypes[1]
  80. if protoimpl.UnsafeEnabled && x != nil {
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. if ms.LoadMessageInfo() == nil {
  83. ms.StoreMessageInfo(mi)
  84. }
  85. return ms
  86. }
  87. return mi.MessageOf(x)
  88. }
  89. // Deprecated: Use RandomAvatarReply.ProtoReflect.Descriptor instead.
  90. func (*RandomAvatarReply) Descriptor() ([]byte, []int) {
  91. return file_account_proto_rawDescGZIP(), []int{1}
  92. }
  93. func (x *RandomAvatarReply) GetAvatarUrl() string {
  94. if x != nil {
  95. return x.AvatarUrl
  96. }
  97. return ""
  98. }
  99. type OpenIDAndAppIDRequest struct {
  100. state protoimpl.MessageState
  101. sizeCache protoimpl.SizeCache
  102. unknownFields protoimpl.UnknownFields
  103. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"`
  104. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId"`
  105. }
  106. func (x *OpenIDAndAppIDRequest) Reset() {
  107. *x = OpenIDAndAppIDRequest{}
  108. if protoimpl.UnsafeEnabled {
  109. mi := &file_account_proto_msgTypes[2]
  110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  111. ms.StoreMessageInfo(mi)
  112. }
  113. }
  114. func (x *OpenIDAndAppIDRequest) String() string {
  115. return protoimpl.X.MessageStringOf(x)
  116. }
  117. func (*OpenIDAndAppIDRequest) ProtoMessage() {}
  118. func (x *OpenIDAndAppIDRequest) ProtoReflect() protoreflect.Message {
  119. mi := &file_account_proto_msgTypes[2]
  120. if protoimpl.UnsafeEnabled && x != nil {
  121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  122. if ms.LoadMessageInfo() == nil {
  123. ms.StoreMessageInfo(mi)
  124. }
  125. return ms
  126. }
  127. return mi.MessageOf(x)
  128. }
  129. // Deprecated: Use OpenIDAndAppIDRequest.ProtoReflect.Descriptor instead.
  130. func (*OpenIDAndAppIDRequest) Descriptor() ([]byte, []int) {
  131. return file_account_proto_rawDescGZIP(), []int{2}
  132. }
  133. func (x *OpenIDAndAppIDRequest) GetOpenId() string {
  134. if x != nil {
  135. return x.OpenId
  136. }
  137. return ""
  138. }
  139. func (x *OpenIDAndAppIDRequest) GetAppId() string {
  140. if x != nil {
  141. return x.AppId
  142. }
  143. return ""
  144. }
  145. type IdentityInfo struct {
  146. state protoimpl.MessageState
  147. sizeCache protoimpl.SizeCache
  148. unknownFields protoimpl.UnknownFields
  149. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
  150. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"`
  151. }
  152. func (x *IdentityInfo) Reset() {
  153. *x = IdentityInfo{}
  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 *IdentityInfo) String() string {
  161. return protoimpl.X.MessageStringOf(x)
  162. }
  163. func (*IdentityInfo) ProtoMessage() {}
  164. func (x *IdentityInfo) 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 IdentityInfo.ProtoReflect.Descriptor instead.
  176. func (*IdentityInfo) Descriptor() ([]byte, []int) {
  177. return file_account_proto_rawDescGZIP(), []int{3}
  178. }
  179. func (x *IdentityInfo) GetId() string {
  180. if x != nil {
  181. return x.Id
  182. }
  183. return ""
  184. }
  185. func (x *IdentityInfo) GetType() string {
  186. if x != nil {
  187. return x.Type
  188. }
  189. return ""
  190. }
  191. type UserInfoDB struct {
  192. state protoimpl.MessageState
  193. sizeCache protoimpl.SizeCache
  194. unknownFields protoimpl.UnknownFields
  195. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  196. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  197. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  198. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  199. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  200. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  201. }
  202. func (x *UserInfoDB) Reset() {
  203. *x = UserInfoDB{}
  204. if protoimpl.UnsafeEnabled {
  205. mi := &file_account_proto_msgTypes[4]
  206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  207. ms.StoreMessageInfo(mi)
  208. }
  209. }
  210. func (x *UserInfoDB) String() string {
  211. return protoimpl.X.MessageStringOf(x)
  212. }
  213. func (*UserInfoDB) ProtoMessage() {}
  214. func (x *UserInfoDB) ProtoReflect() protoreflect.Message {
  215. mi := &file_account_proto_msgTypes[4]
  216. if protoimpl.UnsafeEnabled && x != nil {
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. if ms.LoadMessageInfo() == nil {
  219. ms.StoreMessageInfo(mi)
  220. }
  221. return ms
  222. }
  223. return mi.MessageOf(x)
  224. }
  225. // Deprecated: Use UserInfoDB.ProtoReflect.Descriptor instead.
  226. func (*UserInfoDB) Descriptor() ([]byte, []int) {
  227. return file_account_proto_rawDescGZIP(), []int{4}
  228. }
  229. func (x *UserInfoDB) GetId() string {
  230. if x != nil {
  231. return x.Id
  232. }
  233. return ""
  234. }
  235. func (x *UserInfoDB) GetNickname() string {
  236. if x != nil {
  237. return x.Nickname
  238. }
  239. return ""
  240. }
  241. func (x *UserInfoDB) GetAvatarUrl() string {
  242. if x != nil {
  243. return x.AvatarUrl
  244. }
  245. return ""
  246. }
  247. func (x *UserInfoDB) GetPhone() string {
  248. if x != nil {
  249. return x.Phone
  250. }
  251. return ""
  252. }
  253. func (x *UserInfoDB) GetSex() int64 {
  254. if x != nil {
  255. return x.Sex
  256. }
  257. return 0
  258. }
  259. func (x *UserInfoDB) GetCredit() int64 {
  260. if x != nil {
  261. return x.Credit
  262. }
  263. return 0
  264. }
  265. type PartnerInfoDB struct {
  266. state protoimpl.MessageState
  267. sizeCache protoimpl.SizeCache
  268. unknownFields protoimpl.UnknownFields
  269. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  270. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  271. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  272. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  273. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  274. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  275. }
  276. func (x *PartnerInfoDB) Reset() {
  277. *x = PartnerInfoDB{}
  278. if protoimpl.UnsafeEnabled {
  279. mi := &file_account_proto_msgTypes[5]
  280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  281. ms.StoreMessageInfo(mi)
  282. }
  283. }
  284. func (x *PartnerInfoDB) String() string {
  285. return protoimpl.X.MessageStringOf(x)
  286. }
  287. func (*PartnerInfoDB) ProtoMessage() {}
  288. func (x *PartnerInfoDB) ProtoReflect() protoreflect.Message {
  289. mi := &file_account_proto_msgTypes[5]
  290. if protoimpl.UnsafeEnabled && x != nil {
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. if ms.LoadMessageInfo() == nil {
  293. ms.StoreMessageInfo(mi)
  294. }
  295. return ms
  296. }
  297. return mi.MessageOf(x)
  298. }
  299. // Deprecated: Use PartnerInfoDB.ProtoReflect.Descriptor instead.
  300. func (*PartnerInfoDB) Descriptor() ([]byte, []int) {
  301. return file_account_proto_rawDescGZIP(), []int{5}
  302. }
  303. func (x *PartnerInfoDB) GetId() string {
  304. if x != nil {
  305. return x.Id
  306. }
  307. return ""
  308. }
  309. func (x *PartnerInfoDB) GetNickname() string {
  310. if x != nil {
  311. return x.Nickname
  312. }
  313. return ""
  314. }
  315. func (x *PartnerInfoDB) GetAvatarUrl() string {
  316. if x != nil {
  317. return x.AvatarUrl
  318. }
  319. return ""
  320. }
  321. func (x *PartnerInfoDB) GetPhone() string {
  322. if x != nil {
  323. return x.Phone
  324. }
  325. return ""
  326. }
  327. func (x *PartnerInfoDB) GetSex() int64 {
  328. if x != nil {
  329. return x.Sex
  330. }
  331. return 0
  332. }
  333. func (x *PartnerInfoDB) GetCredit() int64 {
  334. if x != nil {
  335. return x.Credit
  336. }
  337. return 0
  338. }
  339. type AuthorizationRequest struct {
  340. state protoimpl.MessageState
  341. sizeCache protoimpl.SizeCache
  342. unknownFields protoimpl.UnknownFields
  343. JsCode string `protobuf:"bytes,1,opt,name=jsCode,proto3" json:"jsCode"`
  344. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId"`
  345. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"`
  346. FromOpenId string `protobuf:"bytes,4,opt,name=fromOpenId,proto3" json:"fromOpenId"`
  347. }
  348. func (x *AuthorizationRequest) Reset() {
  349. *x = AuthorizationRequest{}
  350. if protoimpl.UnsafeEnabled {
  351. mi := &file_account_proto_msgTypes[6]
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. ms.StoreMessageInfo(mi)
  354. }
  355. }
  356. func (x *AuthorizationRequest) String() string {
  357. return protoimpl.X.MessageStringOf(x)
  358. }
  359. func (*AuthorizationRequest) ProtoMessage() {}
  360. func (x *AuthorizationRequest) ProtoReflect() protoreflect.Message {
  361. mi := &file_account_proto_msgTypes[6]
  362. if protoimpl.UnsafeEnabled && x != nil {
  363. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  364. if ms.LoadMessageInfo() == nil {
  365. ms.StoreMessageInfo(mi)
  366. }
  367. return ms
  368. }
  369. return mi.MessageOf(x)
  370. }
  371. // Deprecated: Use AuthorizationRequest.ProtoReflect.Descriptor instead.
  372. func (*AuthorizationRequest) Descriptor() ([]byte, []int) {
  373. return file_account_proto_rawDescGZIP(), []int{6}
  374. }
  375. func (x *AuthorizationRequest) GetJsCode() string {
  376. if x != nil {
  377. return x.JsCode
  378. }
  379. return ""
  380. }
  381. func (x *AuthorizationRequest) GetAppId() string {
  382. if x != nil {
  383. return x.AppId
  384. }
  385. return ""
  386. }
  387. func (x *AuthorizationRequest) GetType() string {
  388. if x != nil {
  389. return x.Type
  390. }
  391. return ""
  392. }
  393. func (x *AuthorizationRequest) GetFromOpenId() string {
  394. if x != nil {
  395. return x.FromOpenId
  396. }
  397. return ""
  398. }
  399. type TokenReply struct {
  400. state protoimpl.MessageState
  401. sizeCache protoimpl.SizeCache
  402. unknownFields protoimpl.UnknownFields
  403. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token"`
  404. }
  405. func (x *TokenReply) Reset() {
  406. *x = TokenReply{}
  407. if protoimpl.UnsafeEnabled {
  408. mi := &file_account_proto_msgTypes[7]
  409. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  410. ms.StoreMessageInfo(mi)
  411. }
  412. }
  413. func (x *TokenReply) String() string {
  414. return protoimpl.X.MessageStringOf(x)
  415. }
  416. func (*TokenReply) ProtoMessage() {}
  417. func (x *TokenReply) ProtoReflect() protoreflect.Message {
  418. mi := &file_account_proto_msgTypes[7]
  419. if protoimpl.UnsafeEnabled && x != nil {
  420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  421. if ms.LoadMessageInfo() == nil {
  422. ms.StoreMessageInfo(mi)
  423. }
  424. return ms
  425. }
  426. return mi.MessageOf(x)
  427. }
  428. // Deprecated: Use TokenReply.ProtoReflect.Descriptor instead.
  429. func (*TokenReply) Descriptor() ([]byte, []int) {
  430. return file_account_proto_rawDescGZIP(), []int{7}
  431. }
  432. func (x *TokenReply) GetToken() string {
  433. if x != nil {
  434. return x.Token
  435. }
  436. return ""
  437. }
  438. type DebugLoginRequest struct {
  439. state protoimpl.MessageState
  440. sizeCache protoimpl.SizeCache
  441. unknownFields protoimpl.UnknownFields
  442. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  443. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  444. }
  445. func (x *DebugLoginRequest) Reset() {
  446. *x = DebugLoginRequest{}
  447. if protoimpl.UnsafeEnabled {
  448. mi := &file_account_proto_msgTypes[8]
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. ms.StoreMessageInfo(mi)
  451. }
  452. }
  453. func (x *DebugLoginRequest) String() string {
  454. return protoimpl.X.MessageStringOf(x)
  455. }
  456. func (*DebugLoginRequest) ProtoMessage() {}
  457. func (x *DebugLoginRequest) ProtoReflect() protoreflect.Message {
  458. mi := &file_account_proto_msgTypes[8]
  459. if protoimpl.UnsafeEnabled && x != nil {
  460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  461. if ms.LoadMessageInfo() == nil {
  462. ms.StoreMessageInfo(mi)
  463. }
  464. return ms
  465. }
  466. return mi.MessageOf(x)
  467. }
  468. // Deprecated: Use DebugLoginRequest.ProtoReflect.Descriptor instead.
  469. func (*DebugLoginRequest) Descriptor() ([]byte, []int) {
  470. return file_account_proto_rawDescGZIP(), []int{8}
  471. }
  472. func (x *DebugLoginRequest) GetId() int64 {
  473. if x != nil {
  474. return x.Id
  475. }
  476. return 0
  477. }
  478. func (x *DebugLoginRequest) GetCode() string {
  479. if x != nil {
  480. return x.Code
  481. }
  482. return ""
  483. }
  484. type LoginToken struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. Pid string `protobuf:"bytes,1,opt,name=pid,proto3" json:"pid"`
  489. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"`
  490. }
  491. func (x *LoginToken) Reset() {
  492. *x = LoginToken{}
  493. if protoimpl.UnsafeEnabled {
  494. mi := &file_account_proto_msgTypes[9]
  495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  496. ms.StoreMessageInfo(mi)
  497. }
  498. }
  499. func (x *LoginToken) String() string {
  500. return protoimpl.X.MessageStringOf(x)
  501. }
  502. func (*LoginToken) ProtoMessage() {}
  503. func (x *LoginToken) ProtoReflect() protoreflect.Message {
  504. mi := &file_account_proto_msgTypes[9]
  505. if protoimpl.UnsafeEnabled && x != nil {
  506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  507. if ms.LoadMessageInfo() == nil {
  508. ms.StoreMessageInfo(mi)
  509. }
  510. return ms
  511. }
  512. return mi.MessageOf(x)
  513. }
  514. // Deprecated: Use LoginToken.ProtoReflect.Descriptor instead.
  515. func (*LoginToken) Descriptor() ([]byte, []int) {
  516. return file_account_proto_rawDescGZIP(), []int{9}
  517. }
  518. func (x *LoginToken) GetPid() string {
  519. if x != nil {
  520. return x.Pid
  521. }
  522. return ""
  523. }
  524. func (x *LoginToken) GetType() string {
  525. if x != nil {
  526. return x.Type
  527. }
  528. return ""
  529. }
  530. var File_account_proto protoreflect.FileDescriptor
  531. var file_account_proto_rawDesc = []byte{
  532. 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  533. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x1c, 0x67, 0x6f,
  534. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  535. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f,
  536. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72,
  537. 0x6f, 0x74, 0x6f, 0x22, 0x31, 0x0a, 0x13, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63,
  538. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  539. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  540. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x31, 0x0a, 0x11, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  541. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  542. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  543. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x15, 0x4f, 0x70, 0x65,
  544. 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  545. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  546. 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  547. 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  548. 0x22, 0x32, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  549. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  550. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  551. 0x74, 0x79, 0x70, 0x65, 0x22, 0x96, 0x01, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  552. 0x6f, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  553. 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  554. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  555. 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01,
  556. 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a,
  557. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
  558. 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  559. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  560. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x99, 0x01,
  561. 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x42, 0x12,
  562. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  563. 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  564. 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  565. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  566. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f,
  567. 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12,
  568. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  569. 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  570. 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x78, 0x0a, 0x14, 0x41, 0x75, 0x74,
  571. 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  572. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6a, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  573. 0x09, 0x52, 0x06, 0x6a, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  574. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  575. 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74,
  576. 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49,
  577. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65,
  578. 0x6e, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x0a, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  579. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  580. 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x37, 0x0a, 0x11, 0x44, 0x65, 0x62, 0x75, 0x67,
  581. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
  582. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  583. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  584. 0x22, 0x32, 0x0a, 0x0a, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x10,
  585. 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x64,
  586. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  587. 0x74, 0x79, 0x70, 0x65, 0x32, 0xe5, 0x06, 0x0a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  588. 0x12, 0x62, 0x0a, 0x0a, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1e,
  589. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x44, 0x65, 0x62,
  590. 0x75, 0x67, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17,
  591. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x54, 0x6f, 0x6b,
  592. 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22,
  593. 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x64, 0x65, 0x62, 0x75,
  594. 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0d, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
  595. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f,
  596. 0x75, 0x6e, 0x74, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  597. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  598. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  599. 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  600. 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74,
  601. 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x0e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  602. 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  603. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61,
  604. 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  605. 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26,
  606. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  607. 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  608. 0x61, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0c, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  609. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  610. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69,
  611. 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41,
  612. 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  613. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
  614. 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x3a, 0x01, 0x2a,
  615. 0x12, 0x5c, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42,
  616. 0x79, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x12,
  617. 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e, 0x4f, 0x70,
  618. 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  619. 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  620. 0x74, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x60,
  621. 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x46,
  622. 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49,
  623. 0x44, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x2e,
  624. 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x44, 0x41, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x49, 0x44, 0x52, 0x65,
  625. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f,
  626. 0x75, 0x6e, 0x74, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  627. 0x12, 0x40, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42,
  628. 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  629. 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  630. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  631. 0x6c, 0x79, 0x12, 0x36, 0x0a, 0x09, 0x46, 0x69, 0x6e, 0x64, 0x42, 0x79, 0x49, 0x44, 0x73, 0x12,
  632. 0x0f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x64, 0x73,
  633. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61,
  634. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x70, 0x0a, 0x0f, 0x52, 0x61,
  635. 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x12, 0x12, 0x2e,
  636. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65,
  637. 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  638. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x52, 0x65,
  639. 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70,
  640. 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f,
  641. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x42, 0x46, 0x0a, 0x0b,
  642. 0x61, 0x70, 0x69, 0x2e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x01, 0x5a, 0x35, 0x67,
  643. 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65,
  644. 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  645. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3b, 0x61, 0x63, 0x63,
  646. 0x6f, 0x75, 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  647. }
  648. var (
  649. file_account_proto_rawDescOnce sync.Once
  650. file_account_proto_rawDescData = file_account_proto_rawDesc
  651. )
  652. func file_account_proto_rawDescGZIP() []byte {
  653. file_account_proto_rawDescOnce.Do(func() {
  654. file_account_proto_rawDescData = protoimpl.X.CompressGZIP(file_account_proto_rawDescData)
  655. })
  656. return file_account_proto_rawDescData
  657. }
  658. var file_account_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
  659. var file_account_proto_goTypes = []interface{}{
  660. (*RandomNicknameReply)(nil), // 0: api.account.RandomNicknameReply
  661. (*RandomAvatarReply)(nil), // 1: api.account.RandomAvatarReply
  662. (*OpenIDAndAppIDRequest)(nil), // 2: api.account.OpenIDAndAppIDRequest
  663. (*IdentityInfo)(nil), // 3: api.account.IdentityInfo
  664. (*UserInfoDB)(nil), // 4: api.account.UserInfoDB
  665. (*PartnerInfoDB)(nil), // 5: api.account.PartnerInfoDB
  666. (*AuthorizationRequest)(nil), // 6: api.account.AuthorizationRequest
  667. (*TokenReply)(nil), // 7: api.account.TokenReply
  668. (*DebugLoginRequest)(nil), // 8: api.account.DebugLoginRequest
  669. (*LoginToken)(nil), // 9: api.account.LoginToken
  670. (*common.SexReq)(nil), // 10: api.common.SexReq
  671. (*common.Ids)(nil), // 11: api.common.Ids
  672. (*common.TagListReply)(nil), // 12: api.common.TagListReply
  673. (*common.RandomIntroduceReply)(nil), // 13: api.common.RandomIntroduceReply
  674. }
  675. var file_account_proto_depIdxs = []int32{
  676. 8, // 0: api.account.Account.DebugLogin:input_type -> api.account.DebugLoginRequest
  677. 6, // 1: api.account.Account.Authorization:input_type -> api.account.AuthorizationRequest
  678. 10, // 2: api.account.Account.RandomNickname:input_type -> api.common.SexReq
  679. 10, // 3: api.account.Account.RandomAvatar:input_type -> api.common.SexReq
  680. 2, // 4: api.account.Account.GetIdentityByOpenIDAndAppID:input_type -> api.account.OpenIDAndAppIDRequest
  681. 2, // 5: api.account.Account.GetIdentityByFromOpenIDAndAppID:input_type -> api.account.OpenIDAndAppIDRequest
  682. 10, // 6: api.account.Account.FindTagListBySex:input_type -> api.common.SexReq
  683. 11, // 7: api.account.Account.FindByIDs:input_type -> api.common.Ids
  684. 10, // 8: api.account.Account.RandomIntroduce:input_type -> api.common.SexReq
  685. 7, // 9: api.account.Account.DebugLogin:output_type -> api.account.TokenReply
  686. 7, // 10: api.account.Account.Authorization:output_type -> api.account.TokenReply
  687. 0, // 11: api.account.Account.RandomNickname:output_type -> api.account.RandomNicknameReply
  688. 1, // 12: api.account.Account.RandomAvatar:output_type -> api.account.RandomAvatarReply
  689. 3, // 13: api.account.Account.GetIdentityByOpenIDAndAppID:output_type -> api.account.IdentityInfo
  690. 3, // 14: api.account.Account.GetIdentityByFromOpenIDAndAppID:output_type -> api.account.IdentityInfo
  691. 12, // 15: api.account.Account.FindTagListBySex:output_type -> api.common.TagListReply
  692. 12, // 16: api.account.Account.FindByIDs:output_type -> api.common.TagListReply
  693. 13, // 17: api.account.Account.RandomIntroduce:output_type -> api.common.RandomIntroduceReply
  694. 9, // [9:18] is the sub-list for method output_type
  695. 0, // [0:9] is the sub-list for method input_type
  696. 0, // [0:0] is the sub-list for extension type_name
  697. 0, // [0:0] is the sub-list for extension extendee
  698. 0, // [0:0] is the sub-list for field type_name
  699. }
  700. func init() { file_account_proto_init() }
  701. func file_account_proto_init() {
  702. if File_account_proto != nil {
  703. return
  704. }
  705. if !protoimpl.UnsafeEnabled {
  706. file_account_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  707. switch v := v.(*RandomNicknameReply); i {
  708. case 0:
  709. return &v.state
  710. case 1:
  711. return &v.sizeCache
  712. case 2:
  713. return &v.unknownFields
  714. default:
  715. return nil
  716. }
  717. }
  718. file_account_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  719. switch v := v.(*RandomAvatarReply); i {
  720. case 0:
  721. return &v.state
  722. case 1:
  723. return &v.sizeCache
  724. case 2:
  725. return &v.unknownFields
  726. default:
  727. return nil
  728. }
  729. }
  730. file_account_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  731. switch v := v.(*OpenIDAndAppIDRequest); i {
  732. case 0:
  733. return &v.state
  734. case 1:
  735. return &v.sizeCache
  736. case 2:
  737. return &v.unknownFields
  738. default:
  739. return nil
  740. }
  741. }
  742. file_account_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  743. switch v := v.(*IdentityInfo); i {
  744. case 0:
  745. return &v.state
  746. case 1:
  747. return &v.sizeCache
  748. case 2:
  749. return &v.unknownFields
  750. default:
  751. return nil
  752. }
  753. }
  754. file_account_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  755. switch v := v.(*UserInfoDB); i {
  756. case 0:
  757. return &v.state
  758. case 1:
  759. return &v.sizeCache
  760. case 2:
  761. return &v.unknownFields
  762. default:
  763. return nil
  764. }
  765. }
  766. file_account_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  767. switch v := v.(*PartnerInfoDB); i {
  768. case 0:
  769. return &v.state
  770. case 1:
  771. return &v.sizeCache
  772. case 2:
  773. return &v.unknownFields
  774. default:
  775. return nil
  776. }
  777. }
  778. file_account_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  779. switch v := v.(*AuthorizationRequest); i {
  780. case 0:
  781. return &v.state
  782. case 1:
  783. return &v.sizeCache
  784. case 2:
  785. return &v.unknownFields
  786. default:
  787. return nil
  788. }
  789. }
  790. file_account_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  791. switch v := v.(*TokenReply); i {
  792. case 0:
  793. return &v.state
  794. case 1:
  795. return &v.sizeCache
  796. case 2:
  797. return &v.unknownFields
  798. default:
  799. return nil
  800. }
  801. }
  802. file_account_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  803. switch v := v.(*DebugLoginRequest); i {
  804. case 0:
  805. return &v.state
  806. case 1:
  807. return &v.sizeCache
  808. case 2:
  809. return &v.unknownFields
  810. default:
  811. return nil
  812. }
  813. }
  814. file_account_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  815. switch v := v.(*LoginToken); i {
  816. case 0:
  817. return &v.state
  818. case 1:
  819. return &v.sizeCache
  820. case 2:
  821. return &v.unknownFields
  822. default:
  823. return nil
  824. }
  825. }
  826. }
  827. type x struct{}
  828. out := protoimpl.TypeBuilder{
  829. File: protoimpl.DescBuilder{
  830. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  831. RawDescriptor: file_account_proto_rawDesc,
  832. NumEnums: 0,
  833. NumMessages: 10,
  834. NumExtensions: 0,
  835. NumServices: 1,
  836. },
  837. GoTypes: file_account_proto_goTypes,
  838. DependencyIndexes: file_account_proto_depIdxs,
  839. MessageInfos: file_account_proto_msgTypes,
  840. }.Build()
  841. File_account_proto = out.File
  842. file_account_proto_rawDesc = nil
  843. file_account_proto_goTypes = nil
  844. file_account_proto_depIdxs = nil
  845. }