1
0
mirror of synced 2024-11-21 21:06:07 +03:00

Support for ProductGroup level in filter and response

This commit is contained in:
Pavel 2024-07-09 09:44:39 +03:00 committed by GitHub
commit ca955cd49f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

View File

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

View File

@ -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;
}