* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Customer\QueryResult; /** * Class GroupInformation holds customer group information. */ class GroupInformation { /** * @var int */ private $groupId; /** * @var string */ private $name; /** * @param int $groupId * @param string $name */ public function __construct($groupId, $name) { $this->groupId = $groupId; $this->name = $name; } /** * @return int */ public function getGroupId() { return $this->groupId; } /** * @return string */ public function getName() { return $this->name; } }