We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17c8339 + abd0cbf commit 25c35c2Copy full SHA for 25c35c2
entity/entity.go
@@ -66,6 +66,11 @@ type GenPriceInfo struct {
66
PricePerUnit float64 `json:",omitempty"`
67
}
68
69
+type VariationAttribute struct {
70
+ Name string `json:",omitempty"`
71
+ Value string `json:",omitempty"`
72
+}
73
+
74
type Item struct {
75
ASIN string
76
ParentASIN string
@@ -177,6 +182,7 @@ type Item struct {
177
182
Currency string
178
183
179
184
} `json:",omitempty"`
185
+ VariationAttributes []VariationAttribute `json:",omitempty"`
180
186
181
187
Offers *struct {
188
Listings *[]struct {
0 commit comments