diff --git a/yandexmarket/products.proto b/yandexmarket/products.proto index 4fd490f..72ce66e 100644 --- a/yandexmarket/products.proto +++ b/yandexmarket/products.proto @@ -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; } \ No newline at end of file