From ccbff3aba381e679c798f7e54bf8e70acdf0711e Mon Sep 17 00:00:00 2001 From: Opheugene Date: Thu, 18 Jul 2024 17:33:02 +0200 Subject: [PATCH] Fixed ProductFilter types --- src/Model/Filter/Store/ProductFilterType.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Model/Filter/Store/ProductFilterType.php b/src/Model/Filter/Store/ProductFilterType.php index f25f046..278d7b1 100644 --- a/src/Model/Filter/Store/ProductFilterType.php +++ b/src/Model/Filter/Store/ProductFilterType.php @@ -39,7 +39,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("minPrice") */ public $minPrice; @@ -47,7 +47,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("maxPrice") */ public $maxPrice; @@ -55,7 +55,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("minPurchasePrice") */ public $minPurchasePrice; @@ -63,7 +63,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("maxPurchasePrice") */ public $maxPurchasePrice; @@ -71,7 +71,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("minQuantity") */ public $minQuantity; @@ -79,7 +79,7 @@ class ProductFilterType /** * @var string * - * @Form\Type("string") + * @Form\Type("int") * @Form\SerializedName("maxQuantity") */ public $maxQuantity; @@ -165,9 +165,9 @@ class ProductFilterType public $offerIds; /** - * @var string + * @var array * - * @Form\Type("string") + * @Form\Type("array") * @Form\SerializedName("properties") */ public $properties;