id; } public function setId(?int $id): self { $this->id = $id; return $this; } public function getName(): ?string { return $this->name; } public function setName(?string $name): self { $this->name = $name; return $this; } public function getActive(): ?bool { return $this->active; } public function setActive(?bool $active): self { $this->active = $active; return $this; } public function getRegionId(): ?int { return $this->regionId; } public function setRegionId(?int $regionId): self { $this->regionId = $regionId; return $this; } public function getAlias(): ?string { return $this->alias; } public function setAlias(?string $alias): self { $this->alias = $alias; return $this; } public function getAnons(): ?string { return $this->anons; } public function setAnons(?string $anons): self { $this->anons = $anons; return $this; } public function getContent(): ?string { return $this->content; } public function setContent(?string $content): self { $this->content = $content; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(?\DateTimeInterface $updateAt): self { $this->updateAt = $updateAt; return $this; } public function getClinics(): ?array { return $this->clinics; } public function setClinics(?array $clinics): self { $this->clinics = $clinics; return $this; } public function getTimer(): ?string { return $this->timer; } public function setTimer(?string $timer): self { $this->timer = $timer; return $this; } public function getTimerBg(): ?string { return $this->timerBg; } public function setTimerBg(?string $timerBg): self { $this->timerBg = $timerBg; return $this; } public function getShortName(): ?string { return $this->shortName; } public function setShortName(?string $shortName): self { $this->shortName = $shortName; return $this; } public function getLinkServices(): ?array { return $this->linkServices; } public function setLinkServices(?array $linkServices): self { $this->linkServices = $linkServices; return $this; } public function getLinkStaff(): ?array { return $this->linkStaff; } public function setLinkStaff(?array $linkStaff): self { $this->linkStaff = $linkStaff; return $this; } public function getPeriod(): ?string { return $this->period; } public function setPeriod(?string $period): self { $this->period = $period; return $this; } public function getPhotos(): ?array { return $this->photos; } public function setPhotos(?array $photos): self { $this->photos = $photos; return $this; } }