@@ -1911,9 +1911,53 @@ type GetProductPriceInfoResponse struct {
1911
1911
VAT string `json:"vat"`
1912
1912
} `json:"price"`
1913
1913
1914
- // Price index
1914
+ // Deprected: price index
1915
+ //
1916
+ // Use PriceIndexes instead
1915
1917
PriceIndex string `json:"price_index"`
1916
1918
1919
+ // Product price indexes
1920
+ PriceIndexes struct {
1921
+ // Competitors' product price on other marketplaces
1922
+ ExternalIndexData struct {
1923
+ // Minimum competitors' product price on other marketplaces
1924
+ MinimalPrice string `json:"minimal_price"`
1925
+
1926
+ // Price currency
1927
+ MinimalPriceCurrency string `json:"minimal_price_currency"`
1928
+
1929
+ // Price index value
1930
+ PriceIndexValue float64 `json:"price_index_value"`
1931
+ } `json:"external_index_data"`
1932
+
1933
+ // Competitors' product price on Ozon
1934
+ OzonIndexData struct {
1935
+ // Minimum competitors' product price on Ozon
1936
+ MinimalPrice string `json:"minimal_price"`
1937
+
1938
+ // Price currency
1939
+ MinimalPriceCurrency string `json:"minimal_price_currency"`
1940
+
1941
+ // Price index value
1942
+ PriceIndexValue float64 `json:"price_index_value"`
1943
+ } `json:"ozon_index_data"`
1944
+
1945
+ // Resulting price index of the product
1946
+ PriceIndex string `json:"price_index"`
1947
+
1948
+ // Price of your product on other marketplaces
1949
+ SelfMarketplaceIndexData struct {
1950
+ // Minimum price of your product on other marketplaces
1951
+ MinimalPrice string `json:"minimal_price"`
1952
+
1953
+ // Price currency
1954
+ MinimalPriceCurrency string `json:"minimal_price_currency"`
1955
+
1956
+ // Price index value
1957
+ PriceIndexValue float64 `json:"price_index_value"`
1958
+ } `json:"self_marketplace_index_data"`
1959
+ } `json:"prices_indexes"`
1960
+
1917
1961
// Product identifier
1918
1962
ProductId int64 `json:"product_id"`
1919
1963
0 commit comments