id; } public function getName(): ?string { return $this->name; } public function setId(string $id): static { $this->id = $id; return $this; } public function setName(?string $name): static { $this->name = $name; return $this; } public function getType(): ?string { return $this->type; } public function setType(string $type): static { $this->type = $type; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(?string $description): static { $this->description = $description; return $this; } public function isEnabled(): ?bool { return $this->enabled; } public function setEnabled(bool $enabled): static { $this->enabled = $enabled; return $this; } }