Add support for new filters of GET /api/v5/store/offers method
- filter[min/maxPrice] - filter[priceType] - filter[min/maxQuantity]
This commit is contained in:
parent
1c6ebd819f
commit
da8ce13736
@ -83,4 +83,52 @@ class OfferFilterType
|
|||||||
* @Form\SerializedName("sinceId")
|
* @Form\SerializedName("sinceId")
|
||||||
*/
|
*/
|
||||||
public $sinceId;
|
public $sinceId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int[]
|
||||||
|
*
|
||||||
|
* @Form\Type("int[]")
|
||||||
|
* @Form\SerializedName("groups")
|
||||||
|
*/
|
||||||
|
public $groups;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*
|
||||||
|
* @Form\Type("string")
|
||||||
|
* @Form\SerializedName("priceType")
|
||||||
|
*/
|
||||||
|
public $priceType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*
|
||||||
|
* @Form\Type("int")
|
||||||
|
* @Form\SerializedName("minPrice")
|
||||||
|
*/
|
||||||
|
public $minPrice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*
|
||||||
|
* @Form\Type("int")
|
||||||
|
* @Form\SerializedName("maxPrice")
|
||||||
|
*/
|
||||||
|
public $maxPrice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*
|
||||||
|
* @Form\Type("int")
|
||||||
|
* @Form\SerializedName("minQuantity")
|
||||||
|
*/
|
||||||
|
public $minQuantity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*
|
||||||
|
* @Form\Type("int")
|
||||||
|
* @Form\SerializedName("maxQuantity")
|
||||||
|
*/
|
||||||
|
public $maxQuantity;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user