Fixed ProductFilter types
This commit is contained in:
parent
71a3a66724
commit
ccbff3aba3
@ -39,7 +39,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("minPrice")
|
* @Form\SerializedName("minPrice")
|
||||||
*/
|
*/
|
||||||
public $minPrice;
|
public $minPrice;
|
||||||
@ -47,7 +47,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("maxPrice")
|
* @Form\SerializedName("maxPrice")
|
||||||
*/
|
*/
|
||||||
public $maxPrice;
|
public $maxPrice;
|
||||||
@ -55,7 +55,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("minPurchasePrice")
|
* @Form\SerializedName("minPurchasePrice")
|
||||||
*/
|
*/
|
||||||
public $minPurchasePrice;
|
public $minPurchasePrice;
|
||||||
@ -63,7 +63,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("maxPurchasePrice")
|
* @Form\SerializedName("maxPurchasePrice")
|
||||||
*/
|
*/
|
||||||
public $maxPurchasePrice;
|
public $maxPurchasePrice;
|
||||||
@ -71,7 +71,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("minQuantity")
|
* @Form\SerializedName("minQuantity")
|
||||||
*/
|
*/
|
||||||
public $minQuantity;
|
public $minQuantity;
|
||||||
@ -79,7 +79,7 @@ class ProductFilterType
|
|||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("int")
|
||||||
* @Form\SerializedName("maxQuantity")
|
* @Form\SerializedName("maxQuantity")
|
||||||
*/
|
*/
|
||||||
public $maxQuantity;
|
public $maxQuantity;
|
||||||
@ -165,9 +165,9 @@ class ProductFilterType
|
|||||||
public $offerIds;
|
public $offerIds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var array
|
||||||
*
|
*
|
||||||
* @Form\Type("string")
|
* @Form\Type("array")
|
||||||
* @Form\SerializedName("properties")
|
* @Form\SerializedName("properties")
|
||||||
*/
|
*/
|
||||||
public $properties;
|
public $properties;
|
||||||
|
Loading…
Reference in New Issue
Block a user