Update proto definitions
This commit is contained in:
@@ -37,6 +37,26 @@ message GetProductAttributesResponse {
|
||||
}
|
||||
|
||||
|
||||
message DeleteProductsRequest {
|
||||
message Item {
|
||||
int64 product_id = 1;
|
||||
string offer_id = 2;
|
||||
}
|
||||
|
||||
repeated Item items = 1;
|
||||
}
|
||||
|
||||
message DeleteProductsResponse {
|
||||
|
||||
message Item {
|
||||
int64 product_id = 1;
|
||||
string offer_id = 2;
|
||||
bool is_deleted = 3;
|
||||
}
|
||||
|
||||
repeated Item items = 1;
|
||||
}
|
||||
|
||||
message Product {
|
||||
int64 id = 1;
|
||||
string offer_id = 2;
|
||||
@@ -126,3 +146,4 @@ message ProductAttributes {
|
||||
string color_image = 21;
|
||||
int64 description_category_id = 22;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user