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.
1 parent 2647f7b commit b4b2158Copy full SHA for b4b2158
src/main/java/com/storakle/shopify/domain/Product.java
@@ -3,6 +3,8 @@
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import lombok.Data;
5
6
+import java.util.List;
7
+
8
@Data
9
public class Product
10
{
@@ -19,5 +21,5 @@ public class Product
19
21
private Image featuredImage;
20
22
23
@JsonProperty(value = JsonConstants.PRODUCT_VARIANTS)
- private ProductVariant productVariants;
24
+ private List<ProductVariant> productVariants;
25
}
0 commit comments