<?php declare(strict_types=1);namespace Shopware\Core\Content\Property;use Shopware\Core\Content\Property\Aggregate\PropertyGroupOption\PropertyGroupOptionCollection;use Shopware\Core\Content\Property\Aggregate\PropertyGroupTranslation\PropertyGroupTranslationCollection;use Shopware\Core\Framework\DataAbstractionLayer\Entity;use Shopware\Core\Framework\DataAbstractionLayer\EntityIdTrait;class PropertyGroupEntity extends Entity{ use EntityIdTrait; /** * @var string|null */ protected $name; /** * @var string */ protected $displayType; /** * @var string */ protected $sortingType; /** * @var string|null */ protected $description; /** * @var int|null */ protected $position; /** * @var bool */ protected $filterable; /** * @var PropertyGroupOptionCollection|null */ protected $options; /** * @var PropertyGroupTranslationCollection|null */ protected $translations; /** * @var array|null */ protected $customFields; public function getName(): ?string { return $this->name; } public function setName(?string $name): void { $this->name = $name; } public function getFilterable(): bool { return $this->filterable; } public function setFilterable(bool $filterable): void { $this->filterable = $filterable; } public function getOptions(): ?PropertyGroupOptionCollection { return $this->options; } public function setOptions(PropertyGroupOptionCollection $options): void { $this->options = $options; } public function getTranslations(): ?PropertyGroupTranslationCollection { return $this->translations; } public function setTranslations(PropertyGroupTranslationCollection $translations): void { $this->translations = $translations; } public function getDescription(): ?string { return $this->description; } public function setDescription(?string $description): void { $this->description = $description; } public function getPosition(): ?int { return $this->position; } public function setPosition(?int $position): void { $this->position = $position; } public function getDisplayType(): string { return $this->displayType; } public function setDisplayType(string $displayType): void { $this->displayType = $displayType; } public function getSortingType(): string { return $this->sortingType; } public function setSortingType(string $sortingType): void { $this->sortingType = $sortingType; } public function getCustomFields(): ?array { return $this->customFields; } public function setCustomFields(?array $customFields): void { $this->customFields = $customFields; }}