You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,9 +35,10 @@ class VariationSummary(BaseModel):
34
35
The container for Variations Summary response. It consists of metadata of variations response like page numbers, number of variations, Price range and Variation Dimensions.
35
36
"""# noqa: E501
36
37
page_count: Optional[Union[StrictFloat, StrictInt]] =Field(default=None, description="Number of pages in the variation result set.", alias="pageCount")
38
+
price: Optional[VariationSummaryPrice] =None
37
39
variation_count: Optional[Union[StrictFloat, StrictInt]] =Field(default=None, description="Total number of variations available for the product. This represents the complete count of all child ASINs across all pages. Use this value along with pageCount to understand the full scope of available variations.", alias="variationCount")
38
40
variation_dimensions: Optional[List[VariationDimension]] =Field(default=None, description="List of variation dimensions associated with the product. Variation dimensions define the attributes on which products vary (e.g., size, color). Each dimension includes: - Display name and locale for presentation - Dimension name (internal identifier) - List of all possible values for that dimension For example, a clothing item might have two dimensions: 'Size' with values ['S', 'M', 'L'] and 'Color' with values ['Red', 'Blue', 'Green']. These dimensions help users understand how variations differ from each other.", alias="variationDimensions")
0 commit comments