diff --git a/src/Model/Entity/Store/ProductGroup.php b/src/Model/Entity/Store/ProductGroup.php index c150374..bb985c4 100644 --- a/src/Model/Entity/Store/ProductGroup.php +++ b/src/Model/Entity/Store/ProductGroup.php @@ -66,4 +66,12 @@ class ProductGroup * @JMS\SerializedName("active") */ public $active; + + /** + * @var int + * + * @JMS\Type("int") + * @JMS\SerializedName("lvl") + */ + public $lvl; } diff --git a/src/Model/Filter/Store/ProductGroupFilterType.php b/src/Model/Filter/Store/ProductGroupFilterType.php index eaf5284..53bcdee 100644 --- a/src/Model/Filter/Store/ProductGroupFilterType.php +++ b/src/Model/Filter/Store/ProductGroupFilterType.php @@ -58,4 +58,20 @@ class ProductGroupFilterType * @Form\SerializedName("catalogs") */ public $catalogs; + + /** + * @var int + * + * @Form\Type("int") + * @Form\SerializedName("minLevel") + */ + public $minLevel; + + /** + * @var int + * + * @Form\Type("int") + * @Form\SerializedName("maxLevel") + */ + public $maxLevel; }