Update proto definitions
This commit is contained in:
@@ -70,15 +70,20 @@ message GetProductsRequest {
|
||||
}
|
||||
|
||||
message GetProductsResponse {
|
||||
message Offer {
|
||||
message WeightDimensions {
|
||||
float length = 1;
|
||||
float width = 2;
|
||||
float height = 3;
|
||||
float weight = 4;
|
||||
}
|
||||
|
||||
int64 market_category_id = 1;
|
||||
WeightDimensions weight_dimensions = 2;
|
||||
message Offer {
|
||||
message WeightDimensions {
|
||||
float length = 1;
|
||||
float width = 2;
|
||||
float height = 3;
|
||||
float weight = 4;
|
||||
}
|
||||
message BasicPrice{
|
||||
float value = 1;
|
||||
}
|
||||
int64 market_category_id = 1;
|
||||
WeightDimensions weight_dimensions = 2;
|
||||
BasicPrice basic_price = 3;
|
||||
string offer_id = 4;
|
||||
}
|
||||
repeated Offer offers = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user