id; } public function getUuid(): ?string { return $this->uuid; } public function setUuid(string $uuid): self { $this->uuid = $uuid; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getUrl(): ?string { return $this->url; } public function setUrl(string $url): self { $this->url = $url; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): self { $this->description = $description; return $this; } public function getImages(): array { return $this->images; } public function setImages(?array $images): self { $this->images = $images; return $this; } public function isActive(): ?bool { return $this->active; } public function setActive(bool $active): self { $this->active = $active; return $this; } public function getRating(): ?string { return $this->rating; } public function setRating(string $rating): self { $this->rating = $rating; return $this; } public function getAddedBy(): ?int { return $this->addedBy; } public function setAddedBy(int $addedBy): self { $this->addedBy = $addedBy; return $this; } public function getCreatedAt(): ?\DateTimeImmutable { return $this->createdAt; } public function setCreatedAt(\DateTimeImmutable $createdAt): self { $this->createdAt = $createdAt; return $this; } public function getUpdatedAt(): ?\DateTimeImmutable { return $this->updatedAt; } public function setUpdatedAt(\DateTimeImmutable $updatedAt): self { $this->updatedAt = $updatedAt; return $this; } public function getTags(): ?string { return $this->tags; } public function setTags(string $tags): self { $this->tags = $tags; return $this; } }