partner.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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: partner.proto
  6. package partner
  7. import (
  8. base "git.ikuban.com/server/pw-protobuf/api/base"
  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 GetPartnerCircleInfoReq struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  27. }
  28. func (x *GetPartnerCircleInfoReq) Reset() {
  29. *x = GetPartnerCircleInfoReq{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_partner_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *GetPartnerCircleInfoReq) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*GetPartnerCircleInfoReq) ProtoMessage() {}
  40. func (x *GetPartnerCircleInfoReq) ProtoReflect() protoreflect.Message {
  41. mi := &file_partner_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use GetPartnerCircleInfoReq.ProtoReflect.Descriptor instead.
  52. func (*GetPartnerCircleInfoReq) Descriptor() ([]byte, []int) {
  53. return file_partner_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *GetPartnerCircleInfoReq) GetPartnerId() string {
  56. if x != nil {
  57. return x.PartnerId
  58. }
  59. return ""
  60. }
  61. type PartnerCircleInfo struct {
  62. state protoimpl.MessageState
  63. sizeCache protoimpl.SizeCache
  64. unknownFields protoimpl.UnknownFields
  65. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  66. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  67. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  68. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  69. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  70. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  71. }
  72. func (x *PartnerCircleInfo) Reset() {
  73. *x = PartnerCircleInfo{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_partner_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *PartnerCircleInfo) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*PartnerCircleInfo) ProtoMessage() {}
  84. func (x *PartnerCircleInfo) ProtoReflect() protoreflect.Message {
  85. mi := &file_partner_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use PartnerCircleInfo.ProtoReflect.Descriptor instead.
  96. func (*PartnerCircleInfo) Descriptor() ([]byte, []int) {
  97. return file_partner_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *PartnerCircleInfo) GetId() string {
  100. if x != nil {
  101. return x.Id
  102. }
  103. return ""
  104. }
  105. func (x *PartnerCircleInfo) GetNickname() string {
  106. if x != nil {
  107. return x.Nickname
  108. }
  109. return ""
  110. }
  111. func (x *PartnerCircleInfo) GetAvatarUrl() string {
  112. if x != nil {
  113. return x.AvatarUrl
  114. }
  115. return ""
  116. }
  117. func (x *PartnerCircleInfo) GetPhone() string {
  118. if x != nil {
  119. return x.Phone
  120. }
  121. return ""
  122. }
  123. func (x *PartnerCircleInfo) GetSex() int64 {
  124. if x != nil {
  125. return x.Sex
  126. }
  127. return 0
  128. }
  129. func (x *PartnerCircleInfo) GetCredit() int64 {
  130. if x != nil {
  131. return x.Credit
  132. }
  133. return 0
  134. }
  135. type PartnerInfo struct {
  136. state protoimpl.MessageState
  137. sizeCache protoimpl.SizeCache
  138. unknownFields protoimpl.UnknownFields
  139. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  140. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  141. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  142. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
  143. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  144. Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
  145. }
  146. func (x *PartnerInfo) Reset() {
  147. *x = PartnerInfo{}
  148. if protoimpl.UnsafeEnabled {
  149. mi := &file_partner_proto_msgTypes[2]
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. ms.StoreMessageInfo(mi)
  152. }
  153. }
  154. func (x *PartnerInfo) String() string {
  155. return protoimpl.X.MessageStringOf(x)
  156. }
  157. func (*PartnerInfo) ProtoMessage() {}
  158. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  159. mi := &file_partner_proto_msgTypes[2]
  160. if protoimpl.UnsafeEnabled && x != nil {
  161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  162. if ms.LoadMessageInfo() == nil {
  163. ms.StoreMessageInfo(mi)
  164. }
  165. return ms
  166. }
  167. return mi.MessageOf(x)
  168. }
  169. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  170. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  171. return file_partner_proto_rawDescGZIP(), []int{2}
  172. }
  173. func (x *PartnerInfo) GetId() string {
  174. if x != nil {
  175. return x.Id
  176. }
  177. return ""
  178. }
  179. func (x *PartnerInfo) GetNickname() string {
  180. if x != nil {
  181. return x.Nickname
  182. }
  183. return ""
  184. }
  185. func (x *PartnerInfo) GetAvatarUrl() string {
  186. if x != nil {
  187. return x.AvatarUrl
  188. }
  189. return ""
  190. }
  191. func (x *PartnerInfo) GetPhone() string {
  192. if x != nil {
  193. return x.Phone
  194. }
  195. return ""
  196. }
  197. func (x *PartnerInfo) GetSex() int64 {
  198. if x != nil {
  199. return x.Sex
  200. }
  201. return 0
  202. }
  203. func (x *PartnerInfo) GetCredit() int64 {
  204. if x != nil {
  205. return x.Credit
  206. }
  207. return 0
  208. }
  209. var File_partner_proto protoreflect.FileDescriptor
  210. var file_partner_proto_rawDesc = []byte{
  211. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  212. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  213. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  214. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  215. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  216. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x61, 0x73,
  217. 0x65, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x37, 0x0a, 0x17,
  218. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65,
  219. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  220. 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74,
  221. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9d, 0x01, 0x0a, 0x11, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  222. 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  223. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e,
  224. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
  225. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  226. 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74,
  227. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04,
  228. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
  229. 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a,
  230. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  231. 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x97, 0x01, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  232. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  233. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  234. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  235. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
  236. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
  237. 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  238. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01,
  239. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  240. 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x32,
  241. 0xc0, 0x03, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x6c, 0x0a, 0x0d, 0x41,
  242. 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x2e, 0x61,
  243. 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
  244. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61,
  245. 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70,
  246. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  247. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
  248. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x61, 0x0a, 0x0a, 0x44, 0x65, 0x62,
  249. 0x75, 0x67, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61,
  250. 0x73, 0x65, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71,
  251. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  252. 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  253. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f,
  254. 0x67, 0x69, 0x6e, 0x2f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0e,
  255. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  256. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  257. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72,
  258. 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  259. 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  260. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x81,
  261. 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72,
  262. 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  263. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  264. 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e,
  265. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74,
  266. 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82,
  267. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  268. 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x3a,
  269. 0x01, 0x2a, 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  270. 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e,
  271. 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72,
  272. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  273. 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  274. 0x6f, 0x33,
  275. }
  276. var (
  277. file_partner_proto_rawDescOnce sync.Once
  278. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  279. )
  280. func file_partner_proto_rawDescGZIP() []byte {
  281. file_partner_proto_rawDescOnce.Do(func() {
  282. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  283. })
  284. return file_partner_proto_rawDescData
  285. }
  286. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
  287. var file_partner_proto_goTypes = []interface{}{
  288. (*GetPartnerCircleInfoReq)(nil), // 0: api.partner.GetPartnerCircleInfoReq
  289. (*PartnerCircleInfo)(nil), // 1: api.partner.PartnerCircleInfo
  290. (*PartnerInfo)(nil), // 2: api.partner.PartnerInfo
  291. (*base.AuthorizationRequest)(nil), // 3: api.base.AuthorizationRequest
  292. (*base.DebugLoginRequest)(nil), // 4: api.base.DebugLoginRequest
  293. (*emptypb.Empty)(nil), // 5: google.protobuf.Empty
  294. (*base.TokenReply)(nil), // 6: api.base.TokenReply
  295. }
  296. var file_partner_proto_depIdxs = []int32{
  297. 3, // 0: api.partner.Partner.Authorization:input_type -> api.base.AuthorizationRequest
  298. 4, // 1: api.partner.Partner.DebugLogin:input_type -> api.base.DebugLoginRequest
  299. 5, // 2: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  300. 0, // 3: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.partner.GetPartnerCircleInfoReq
  301. 6, // 4: api.partner.Partner.Authorization:output_type -> api.base.TokenReply
  302. 6, // 5: api.partner.Partner.DebugLogin:output_type -> api.base.TokenReply
  303. 2, // 6: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  304. 1, // 7: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.partner.PartnerCircleInfo
  305. 4, // [4:8] is the sub-list for method output_type
  306. 0, // [0:4] is the sub-list for method input_type
  307. 0, // [0:0] is the sub-list for extension type_name
  308. 0, // [0:0] is the sub-list for extension extendee
  309. 0, // [0:0] is the sub-list for field type_name
  310. }
  311. func init() { file_partner_proto_init() }
  312. func file_partner_proto_init() {
  313. if File_partner_proto != nil {
  314. return
  315. }
  316. if !protoimpl.UnsafeEnabled {
  317. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  318. switch v := v.(*GetPartnerCircleInfoReq); i {
  319. case 0:
  320. return &v.state
  321. case 1:
  322. return &v.sizeCache
  323. case 2:
  324. return &v.unknownFields
  325. default:
  326. return nil
  327. }
  328. }
  329. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  330. switch v := v.(*PartnerCircleInfo); i {
  331. case 0:
  332. return &v.state
  333. case 1:
  334. return &v.sizeCache
  335. case 2:
  336. return &v.unknownFields
  337. default:
  338. return nil
  339. }
  340. }
  341. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  342. switch v := v.(*PartnerInfo); i {
  343. case 0:
  344. return &v.state
  345. case 1:
  346. return &v.sizeCache
  347. case 2:
  348. return &v.unknownFields
  349. default:
  350. return nil
  351. }
  352. }
  353. }
  354. type x struct{}
  355. out := protoimpl.TypeBuilder{
  356. File: protoimpl.DescBuilder{
  357. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  358. RawDescriptor: file_partner_proto_rawDesc,
  359. NumEnums: 0,
  360. NumMessages: 3,
  361. NumExtensions: 0,
  362. NumServices: 1,
  363. },
  364. GoTypes: file_partner_proto_goTypes,
  365. DependencyIndexes: file_partner_proto_depIdxs,
  366. MessageInfos: file_partner_proto_msgTypes,
  367. }.Build()
  368. File_partner_proto = out.File
  369. file_partner_proto_rawDesc = nil
  370. file_partner_proto_goTypes = nil
  371. file_partner_proto_depIdxs = nil
  372. }