id; } public function getName(): ?string { return $this->name; } public function setName(?string $name): static { $this->name = $name; return $this; } public function getValue(): ?string { return $this->value; } public function setValue(?string $value): static { $this->value = $value; return $this; } public function getPreference(): ?Preference { return $this->preference; } public function setPreference(?Preference $preference): static { $this->preference = $preference; return $this; } public function isEnabled(): ?bool { return $this->enabled; } public function setEnabled(bool $enabled): static { $this->enabled = $enabled; return $this; } }