shopping_product_service.pb.go 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.31.0
  4. // protoc v4.25.0
  5. // source: proto/shopping_product_service.proto
  6. package shopping_service
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type GetProductListRequest struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  24. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  25. Keyword string `protobuf:"bytes,3,opt,name=keyword,proto3" json:"keyword,omitempty"`
  26. }
  27. func (x *GetProductListRequest) Reset() {
  28. *x = GetProductListRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_proto_shopping_product_service_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *GetProductListRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*GetProductListRequest) ProtoMessage() {}
  39. func (x *GetProductListRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_proto_shopping_product_service_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 GetProductListRequest.ProtoReflect.Descriptor instead.
  51. func (*GetProductListRequest) Descriptor() ([]byte, []int) {
  52. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *GetProductListRequest) GetPage() int32 {
  55. if x != nil {
  56. return x.Page
  57. }
  58. return 0
  59. }
  60. func (x *GetProductListRequest) GetPageSize() int32 {
  61. if x != nil {
  62. return x.PageSize
  63. }
  64. return 0
  65. }
  66. func (x *GetProductListRequest) GetKeyword() string {
  67. if x != nil {
  68. return x.Keyword
  69. }
  70. return ""
  71. }
  72. type GetProductListResponse struct {
  73. state protoimpl.MessageState
  74. sizeCache protoimpl.SizeCache
  75. unknownFields protoimpl.UnknownFields
  76. Items []*Product `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
  77. TotalCount int64 `protobuf:"varint,2,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  78. }
  79. func (x *GetProductListResponse) Reset() {
  80. *x = GetProductListResponse{}
  81. if protoimpl.UnsafeEnabled {
  82. mi := &file_proto_shopping_product_service_proto_msgTypes[1]
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. ms.StoreMessageInfo(mi)
  85. }
  86. }
  87. func (x *GetProductListResponse) String() string {
  88. return protoimpl.X.MessageStringOf(x)
  89. }
  90. func (*GetProductListResponse) ProtoMessage() {}
  91. func (x *GetProductListResponse) ProtoReflect() protoreflect.Message {
  92. mi := &file_proto_shopping_product_service_proto_msgTypes[1]
  93. if protoimpl.UnsafeEnabled && x != nil {
  94. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  95. if ms.LoadMessageInfo() == nil {
  96. ms.StoreMessageInfo(mi)
  97. }
  98. return ms
  99. }
  100. return mi.MessageOf(x)
  101. }
  102. // Deprecated: Use GetProductListResponse.ProtoReflect.Descriptor instead.
  103. func (*GetProductListResponse) Descriptor() ([]byte, []int) {
  104. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{1}
  105. }
  106. func (x *GetProductListResponse) GetItems() []*Product {
  107. if x != nil {
  108. return x.Items
  109. }
  110. return nil
  111. }
  112. func (x *GetProductListResponse) GetTotalCount() int64 {
  113. if x != nil {
  114. return x.TotalCount
  115. }
  116. return 0
  117. }
  118. type GetProductRequest struct {
  119. state protoimpl.MessageState
  120. sizeCache protoimpl.SizeCache
  121. unknownFields protoimpl.UnknownFields
  122. ProductId int64 `protobuf:"varint,1,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"`
  123. }
  124. func (x *GetProductRequest) Reset() {
  125. *x = GetProductRequest{}
  126. if protoimpl.UnsafeEnabled {
  127. mi := &file_proto_shopping_product_service_proto_msgTypes[2]
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. ms.StoreMessageInfo(mi)
  130. }
  131. }
  132. func (x *GetProductRequest) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*GetProductRequest) ProtoMessage() {}
  136. func (x *GetProductRequest) ProtoReflect() protoreflect.Message {
  137. mi := &file_proto_shopping_product_service_proto_msgTypes[2]
  138. if protoimpl.UnsafeEnabled && x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use GetProductRequest.ProtoReflect.Descriptor instead.
  148. func (*GetProductRequest) Descriptor() ([]byte, []int) {
  149. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{2}
  150. }
  151. func (x *GetProductRequest) GetProductId() int64 {
  152. if x != nil {
  153. return x.ProductId
  154. }
  155. return 0
  156. }
  157. type GetProductResponse struct {
  158. state protoimpl.MessageState
  159. sizeCache protoimpl.SizeCache
  160. unknownFields protoimpl.UnknownFields
  161. Data *Product `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  162. }
  163. func (x *GetProductResponse) Reset() {
  164. *x = GetProductResponse{}
  165. if protoimpl.UnsafeEnabled {
  166. mi := &file_proto_shopping_product_service_proto_msgTypes[3]
  167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  168. ms.StoreMessageInfo(mi)
  169. }
  170. }
  171. func (x *GetProductResponse) String() string {
  172. return protoimpl.X.MessageStringOf(x)
  173. }
  174. func (*GetProductResponse) ProtoMessage() {}
  175. func (x *GetProductResponse) ProtoReflect() protoreflect.Message {
  176. mi := &file_proto_shopping_product_service_proto_msgTypes[3]
  177. if protoimpl.UnsafeEnabled && x != nil {
  178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  179. if ms.LoadMessageInfo() == nil {
  180. ms.StoreMessageInfo(mi)
  181. }
  182. return ms
  183. }
  184. return mi.MessageOf(x)
  185. }
  186. // Deprecated: Use GetProductResponse.ProtoReflect.Descriptor instead.
  187. func (*GetProductResponse) Descriptor() ([]byte, []int) {
  188. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{3}
  189. }
  190. func (x *GetProductResponse) GetData() *Product {
  191. if x != nil {
  192. return x.Data
  193. }
  194. return nil
  195. }
  196. type CreateProductRequest struct {
  197. state protoimpl.MessageState
  198. sizeCache protoimpl.SizeCache
  199. unknownFields protoimpl.UnknownFields
  200. Items []*Product `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
  201. }
  202. func (x *CreateProductRequest) Reset() {
  203. *x = CreateProductRequest{}
  204. if protoimpl.UnsafeEnabled {
  205. mi := &file_proto_shopping_product_service_proto_msgTypes[4]
  206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  207. ms.StoreMessageInfo(mi)
  208. }
  209. }
  210. func (x *CreateProductRequest) String() string {
  211. return protoimpl.X.MessageStringOf(x)
  212. }
  213. func (*CreateProductRequest) ProtoMessage() {}
  214. func (x *CreateProductRequest) ProtoReflect() protoreflect.Message {
  215. mi := &file_proto_shopping_product_service_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 CreateProductRequest.ProtoReflect.Descriptor instead.
  226. func (*CreateProductRequest) Descriptor() ([]byte, []int) {
  227. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{4}
  228. }
  229. func (x *CreateProductRequest) GetItems() []*Product {
  230. if x != nil {
  231. return x.Items
  232. }
  233. return nil
  234. }
  235. type CreateProductResponse struct {
  236. state protoimpl.MessageState
  237. sizeCache protoimpl.SizeCache
  238. unknownFields protoimpl.UnknownFields
  239. }
  240. func (x *CreateProductResponse) Reset() {
  241. *x = CreateProductResponse{}
  242. if protoimpl.UnsafeEnabled {
  243. mi := &file_proto_shopping_product_service_proto_msgTypes[5]
  244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  245. ms.StoreMessageInfo(mi)
  246. }
  247. }
  248. func (x *CreateProductResponse) String() string {
  249. return protoimpl.X.MessageStringOf(x)
  250. }
  251. func (*CreateProductResponse) ProtoMessage() {}
  252. func (x *CreateProductResponse) ProtoReflect() protoreflect.Message {
  253. mi := &file_proto_shopping_product_service_proto_msgTypes[5]
  254. if protoimpl.UnsafeEnabled && x != nil {
  255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  256. if ms.LoadMessageInfo() == nil {
  257. ms.StoreMessageInfo(mi)
  258. }
  259. return ms
  260. }
  261. return mi.MessageOf(x)
  262. }
  263. // Deprecated: Use CreateProductResponse.ProtoReflect.Descriptor instead.
  264. func (*CreateProductResponse) Descriptor() ([]byte, []int) {
  265. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{5}
  266. }
  267. type UpdateProductRequest struct {
  268. state protoimpl.MessageState
  269. sizeCache protoimpl.SizeCache
  270. unknownFields protoimpl.UnknownFields
  271. ProductId int64 `protobuf:"varint,1,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"`
  272. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  273. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  274. Price int32 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
  275. StockQuantity int32 `protobuf:"varint,5,opt,name=stock_quantity,json=stockQuantity,proto3" json:"stock_quantity,omitempty"`
  276. }
  277. func (x *UpdateProductRequest) Reset() {
  278. *x = UpdateProductRequest{}
  279. if protoimpl.UnsafeEnabled {
  280. mi := &file_proto_shopping_product_service_proto_msgTypes[6]
  281. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  282. ms.StoreMessageInfo(mi)
  283. }
  284. }
  285. func (x *UpdateProductRequest) String() string {
  286. return protoimpl.X.MessageStringOf(x)
  287. }
  288. func (*UpdateProductRequest) ProtoMessage() {}
  289. func (x *UpdateProductRequest) ProtoReflect() protoreflect.Message {
  290. mi := &file_proto_shopping_product_service_proto_msgTypes[6]
  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 UpdateProductRequest.ProtoReflect.Descriptor instead.
  301. func (*UpdateProductRequest) Descriptor() ([]byte, []int) {
  302. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{6}
  303. }
  304. func (x *UpdateProductRequest) GetProductId() int64 {
  305. if x != nil {
  306. return x.ProductId
  307. }
  308. return 0
  309. }
  310. func (x *UpdateProductRequest) GetName() string {
  311. if x != nil {
  312. return x.Name
  313. }
  314. return ""
  315. }
  316. func (x *UpdateProductRequest) GetDescription() string {
  317. if x != nil {
  318. return x.Description
  319. }
  320. return ""
  321. }
  322. func (x *UpdateProductRequest) GetPrice() int32 {
  323. if x != nil {
  324. return x.Price
  325. }
  326. return 0
  327. }
  328. func (x *UpdateProductRequest) GetStockQuantity() int32 {
  329. if x != nil {
  330. return x.StockQuantity
  331. }
  332. return 0
  333. }
  334. type UpdateProductResponse struct {
  335. state protoimpl.MessageState
  336. sizeCache protoimpl.SizeCache
  337. unknownFields protoimpl.UnknownFields
  338. }
  339. func (x *UpdateProductResponse) Reset() {
  340. *x = UpdateProductResponse{}
  341. if protoimpl.UnsafeEnabled {
  342. mi := &file_proto_shopping_product_service_proto_msgTypes[7]
  343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  344. ms.StoreMessageInfo(mi)
  345. }
  346. }
  347. func (x *UpdateProductResponse) String() string {
  348. return protoimpl.X.MessageStringOf(x)
  349. }
  350. func (*UpdateProductResponse) ProtoMessage() {}
  351. func (x *UpdateProductResponse) ProtoReflect() protoreflect.Message {
  352. mi := &file_proto_shopping_product_service_proto_msgTypes[7]
  353. if protoimpl.UnsafeEnabled && x != nil {
  354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  355. if ms.LoadMessageInfo() == nil {
  356. ms.StoreMessageInfo(mi)
  357. }
  358. return ms
  359. }
  360. return mi.MessageOf(x)
  361. }
  362. // Deprecated: Use UpdateProductResponse.ProtoReflect.Descriptor instead.
  363. func (*UpdateProductResponse) Descriptor() ([]byte, []int) {
  364. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{7}
  365. }
  366. type DeleteProductRequest struct {
  367. state protoimpl.MessageState
  368. sizeCache protoimpl.SizeCache
  369. unknownFields protoimpl.UnknownFields
  370. ProductId int64 `protobuf:"varint,1,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"`
  371. }
  372. func (x *DeleteProductRequest) Reset() {
  373. *x = DeleteProductRequest{}
  374. if protoimpl.UnsafeEnabled {
  375. mi := &file_proto_shopping_product_service_proto_msgTypes[8]
  376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  377. ms.StoreMessageInfo(mi)
  378. }
  379. }
  380. func (x *DeleteProductRequest) String() string {
  381. return protoimpl.X.MessageStringOf(x)
  382. }
  383. func (*DeleteProductRequest) ProtoMessage() {}
  384. func (x *DeleteProductRequest) ProtoReflect() protoreflect.Message {
  385. mi := &file_proto_shopping_product_service_proto_msgTypes[8]
  386. if protoimpl.UnsafeEnabled && x != nil {
  387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  388. if ms.LoadMessageInfo() == nil {
  389. ms.StoreMessageInfo(mi)
  390. }
  391. return ms
  392. }
  393. return mi.MessageOf(x)
  394. }
  395. // Deprecated: Use DeleteProductRequest.ProtoReflect.Descriptor instead.
  396. func (*DeleteProductRequest) Descriptor() ([]byte, []int) {
  397. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{8}
  398. }
  399. func (x *DeleteProductRequest) GetProductId() int64 {
  400. if x != nil {
  401. return x.ProductId
  402. }
  403. return 0
  404. }
  405. type DeleteProductResponse struct {
  406. state protoimpl.MessageState
  407. sizeCache protoimpl.SizeCache
  408. unknownFields protoimpl.UnknownFields
  409. }
  410. func (x *DeleteProductResponse) Reset() {
  411. *x = DeleteProductResponse{}
  412. if protoimpl.UnsafeEnabled {
  413. mi := &file_proto_shopping_product_service_proto_msgTypes[9]
  414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  415. ms.StoreMessageInfo(mi)
  416. }
  417. }
  418. func (x *DeleteProductResponse) String() string {
  419. return protoimpl.X.MessageStringOf(x)
  420. }
  421. func (*DeleteProductResponse) ProtoMessage() {}
  422. func (x *DeleteProductResponse) ProtoReflect() protoreflect.Message {
  423. mi := &file_proto_shopping_product_service_proto_msgTypes[9]
  424. if protoimpl.UnsafeEnabled && x != nil {
  425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  426. if ms.LoadMessageInfo() == nil {
  427. ms.StoreMessageInfo(mi)
  428. }
  429. return ms
  430. }
  431. return mi.MessageOf(x)
  432. }
  433. // Deprecated: Use DeleteProductResponse.ProtoReflect.Descriptor instead.
  434. func (*DeleteProductResponse) Descriptor() ([]byte, []int) {
  435. return file_proto_shopping_product_service_proto_rawDescGZIP(), []int{9}
  436. }
  437. var File_proto_shopping_product_service_proto protoreflect.FileDescriptor
  438. var file_proto_shopping_product_service_proto_rawDesc = []byte{
  439. 0x0a, 0x24, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67,
  440. 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  441. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67,
  442. 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  443. 0x1a, 0x21, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x68, 0x6f,
  444. 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72,
  445. 0x6f, 0x74, 0x6f, 0x22, 0x62, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
  446. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  447. 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
  448. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  449. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a,
  450. 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  451. 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x6f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50, 0x72,
  452. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  453. 0x65, 0x12, 0x34, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  454. 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67,
  455. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  456. 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  457. 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x6f,
  458. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x32, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50,
  459. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  460. 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  461. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12,
  462. 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  463. 0x73, 0x65, 0x12, 0x32, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  464. 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67,
  465. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  466. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4c, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  467. 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x34,
  468. 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e,
  469. 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65,
  470. 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x05, 0x69,
  471. 0x74, 0x65, 0x6d, 0x73, 0x22, 0x17, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72,
  472. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xa8, 0x01,
  473. 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52,
  474. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  475. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64,
  476. 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  477. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
  478. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  479. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x70,
  480. 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63,
  481. 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x5f, 0x71, 0x75, 0x61, 0x6e, 0x74,
  482. 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x63, 0x6b,
  483. 0x51, 0x75, 0x61, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0x17, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61,
  484. 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  485. 0x65, 0x22, 0x35, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75,
  486. 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  487. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  488. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65,
  489. 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  490. 0x65, 0x32, 0xcc, 0x04, 0x0a, 0x16, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72,
  491. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x73, 0x0a, 0x0e,
  492. 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f,
  493. 0x2e, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  494. 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f,
  495. 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  496. 0x30, 0x2e, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  497. 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72,
  498. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  499. 0x65, 0x12, 0x67, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12,
  500. 0x2b, 0x2e, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  501. 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72,
  502. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x73,
  503. 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  504. 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x64, 0x75,
  505. 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x70, 0x0a, 0x0d, 0x43, 0x72,
  506. 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12, 0x2e, 0x2e, 0x73, 0x68,
  507. 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73,
  508. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
  509. 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x73, 0x68,
  510. 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73,
  511. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
  512. 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x70, 0x0a, 0x0d,
  513. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12, 0x2e, 0x2e,
  514. 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  515. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  516. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e,
  517. 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  518. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  519. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x70,
  520. 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12,
  521. 0x2e, 0x2e, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  522. 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  523. 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  524. 0x2f, 0x2e, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  525. 0x63, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  526. 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  527. 0x42, 0x1a, 0x5a, 0x18, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x3b, 0x73, 0x68, 0x6f, 0x70,
  528. 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x62, 0x06, 0x70, 0x72,
  529. 0x6f, 0x74, 0x6f, 0x33,
  530. }
  531. var (
  532. file_proto_shopping_product_service_proto_rawDescOnce sync.Once
  533. file_proto_shopping_product_service_proto_rawDescData = file_proto_shopping_product_service_proto_rawDesc
  534. )
  535. func file_proto_shopping_product_service_proto_rawDescGZIP() []byte {
  536. file_proto_shopping_product_service_proto_rawDescOnce.Do(func() {
  537. file_proto_shopping_product_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_shopping_product_service_proto_rawDescData)
  538. })
  539. return file_proto_shopping_product_service_proto_rawDescData
  540. }
  541. var file_proto_shopping_product_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
  542. var file_proto_shopping_product_service_proto_goTypes = []interface{}{
  543. (*GetProductListRequest)(nil), // 0: shopping_product_service.GetProductListRequest
  544. (*GetProductListResponse)(nil), // 1: shopping_product_service.GetProductListResponse
  545. (*GetProductRequest)(nil), // 2: shopping_product_service.GetProductRequest
  546. (*GetProductResponse)(nil), // 3: shopping_product_service.GetProductResponse
  547. (*CreateProductRequest)(nil), // 4: shopping_product_service.CreateProductRequest
  548. (*CreateProductResponse)(nil), // 5: shopping_product_service.CreateProductResponse
  549. (*UpdateProductRequest)(nil), // 6: shopping_product_service.UpdateProductRequest
  550. (*UpdateProductResponse)(nil), // 7: shopping_product_service.UpdateProductResponse
  551. (*DeleteProductRequest)(nil), // 8: shopping_product_service.DeleteProductRequest
  552. (*DeleteProductResponse)(nil), // 9: shopping_product_service.DeleteProductResponse
  553. (*Product)(nil), // 10: base_shopping_service.Product
  554. }
  555. var file_proto_shopping_product_service_proto_depIdxs = []int32{
  556. 10, // 0: shopping_product_service.GetProductListResponse.items:type_name -> base_shopping_service.Product
  557. 10, // 1: shopping_product_service.GetProductResponse.data:type_name -> base_shopping_service.Product
  558. 10, // 2: shopping_product_service.CreateProductRequest.items:type_name -> base_shopping_service.Product
  559. 0, // 3: shopping_product_service.ShoppingProductService.GetProductList:input_type -> shopping_product_service.GetProductListRequest
  560. 2, // 4: shopping_product_service.ShoppingProductService.GetProduct:input_type -> shopping_product_service.GetProductRequest
  561. 4, // 5: shopping_product_service.ShoppingProductService.CreateProduct:input_type -> shopping_product_service.CreateProductRequest
  562. 6, // 6: shopping_product_service.ShoppingProductService.UpdateProduct:input_type -> shopping_product_service.UpdateProductRequest
  563. 8, // 7: shopping_product_service.ShoppingProductService.DeleteProduct:input_type -> shopping_product_service.DeleteProductRequest
  564. 1, // 8: shopping_product_service.ShoppingProductService.GetProductList:output_type -> shopping_product_service.GetProductListResponse
  565. 3, // 9: shopping_product_service.ShoppingProductService.GetProduct:output_type -> shopping_product_service.GetProductResponse
  566. 5, // 10: shopping_product_service.ShoppingProductService.CreateProduct:output_type -> shopping_product_service.CreateProductResponse
  567. 7, // 11: shopping_product_service.ShoppingProductService.UpdateProduct:output_type -> shopping_product_service.UpdateProductResponse
  568. 9, // 12: shopping_product_service.ShoppingProductService.DeleteProduct:output_type -> shopping_product_service.DeleteProductResponse
  569. 8, // [8:13] is the sub-list for method output_type
  570. 3, // [3:8] is the sub-list for method input_type
  571. 3, // [3:3] is the sub-list for extension type_name
  572. 3, // [3:3] is the sub-list for extension extendee
  573. 0, // [0:3] is the sub-list for field type_name
  574. }
  575. func init() { file_proto_shopping_product_service_proto_init() }
  576. func file_proto_shopping_product_service_proto_init() {
  577. if File_proto_shopping_product_service_proto != nil {
  578. return
  579. }
  580. file_proto_base_shopping_service_proto_init()
  581. if !protoimpl.UnsafeEnabled {
  582. file_proto_shopping_product_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  583. switch v := v.(*GetProductListRequest); i {
  584. case 0:
  585. return &v.state
  586. case 1:
  587. return &v.sizeCache
  588. case 2:
  589. return &v.unknownFields
  590. default:
  591. return nil
  592. }
  593. }
  594. file_proto_shopping_product_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  595. switch v := v.(*GetProductListResponse); i {
  596. case 0:
  597. return &v.state
  598. case 1:
  599. return &v.sizeCache
  600. case 2:
  601. return &v.unknownFields
  602. default:
  603. return nil
  604. }
  605. }
  606. file_proto_shopping_product_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  607. switch v := v.(*GetProductRequest); i {
  608. case 0:
  609. return &v.state
  610. case 1:
  611. return &v.sizeCache
  612. case 2:
  613. return &v.unknownFields
  614. default:
  615. return nil
  616. }
  617. }
  618. file_proto_shopping_product_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  619. switch v := v.(*GetProductResponse); i {
  620. case 0:
  621. return &v.state
  622. case 1:
  623. return &v.sizeCache
  624. case 2:
  625. return &v.unknownFields
  626. default:
  627. return nil
  628. }
  629. }
  630. file_proto_shopping_product_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  631. switch v := v.(*CreateProductRequest); i {
  632. case 0:
  633. return &v.state
  634. case 1:
  635. return &v.sizeCache
  636. case 2:
  637. return &v.unknownFields
  638. default:
  639. return nil
  640. }
  641. }
  642. file_proto_shopping_product_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  643. switch v := v.(*CreateProductResponse); i {
  644. case 0:
  645. return &v.state
  646. case 1:
  647. return &v.sizeCache
  648. case 2:
  649. return &v.unknownFields
  650. default:
  651. return nil
  652. }
  653. }
  654. file_proto_shopping_product_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  655. switch v := v.(*UpdateProductRequest); i {
  656. case 0:
  657. return &v.state
  658. case 1:
  659. return &v.sizeCache
  660. case 2:
  661. return &v.unknownFields
  662. default:
  663. return nil
  664. }
  665. }
  666. file_proto_shopping_product_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  667. switch v := v.(*UpdateProductResponse); i {
  668. case 0:
  669. return &v.state
  670. case 1:
  671. return &v.sizeCache
  672. case 2:
  673. return &v.unknownFields
  674. default:
  675. return nil
  676. }
  677. }
  678. file_proto_shopping_product_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  679. switch v := v.(*DeleteProductRequest); i {
  680. case 0:
  681. return &v.state
  682. case 1:
  683. return &v.sizeCache
  684. case 2:
  685. return &v.unknownFields
  686. default:
  687. return nil
  688. }
  689. }
  690. file_proto_shopping_product_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  691. switch v := v.(*DeleteProductResponse); i {
  692. case 0:
  693. return &v.state
  694. case 1:
  695. return &v.sizeCache
  696. case 2:
  697. return &v.unknownFields
  698. default:
  699. return nil
  700. }
  701. }
  702. }
  703. type x struct{}
  704. out := protoimpl.TypeBuilder{
  705. File: protoimpl.DescBuilder{
  706. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  707. RawDescriptor: file_proto_shopping_product_service_proto_rawDesc,
  708. NumEnums: 0,
  709. NumMessages: 10,
  710. NumExtensions: 0,
  711. NumServices: 1,
  712. },
  713. GoTypes: file_proto_shopping_product_service_proto_goTypes,
  714. DependencyIndexes: file_proto_shopping_product_service_proto_depIdxs,
  715. MessageInfos: file_proto_shopping_product_service_proto_msgTypes,
  716. }.Build()
  717. File_proto_shopping_product_service_proto = out.File
  718. file_proto_shopping_product_service_proto_rawDesc = nil
  719. file_proto_shopping_product_service_proto_goTypes = nil
  720. file_proto_shopping_product_service_proto_depIdxs = nil
  721. }