1
0
mirror of synced 2024-11-23 13:56:06 +03:00

Support for ProductGroup level in filter and response

This commit is contained in:
Kirill Sukhorukov 2024-06-28 13:42:00 +03:00
parent bc5d044282
commit a2bac7dcd0
2 changed files with 24 additions and 0 deletions

View File

@ -66,4 +66,12 @@ class ProductGroup
* @JMS\SerializedName("active") * @JMS\SerializedName("active")
*/ */
public $active; public $active;
/**
* @var int
*
* @JMS\Type("int")
* @JMS\SerializedName("lvl")
*/
public $lvl;
} }

View File

@ -58,4 +58,20 @@ class ProductGroupFilterType
* @Form\SerializedName("catalogs") * @Form\SerializedName("catalogs")
*/ */
public $catalogs; public $catalogs;
/**
* @var int
*
* @Form\Type("int")
* @Form\SerializedName("minLevel")
*/
public $minLevel;
/**
* @var int
*
* @Form\Type("int")
* @Form\SerializedName("maxLevel")
*/
public $maxLevel;
} }