timestamp = new \DateTimeImmutable(); } public function getId(): ?Uuid { return $this->id; } public function getCoastalPoint(): ?CoastalPoint { return $this->coastalPoint; } public function setCoastalPoint(?CoastalPoint $coastalPoint): static { $this->coastalPoint = $coastalPoint; return $this; } public function getTimestamp(): ?\DateTimeImmutable { return $this->timestamp; } public function setTimestamp(\DateTimeImmutable $timestamp): static { $this->timestamp = $timestamp; return $this; } public function getScore(): ?int { return $this->score; } public function setScore(int $score): static { $this->score = $score; return $this; } public function getLevel(): ?string { return $this->level; } public function setLevel(string $level): static { $this->level = $level; return $this; } public function getDistanceToNearestSargassum(): ?float { return $this->distanceToNearestSargassum; } public function setDistanceToNearestSargassum(?float $d): static { $this->distanceToNearestSargassum = $d; return $this; } public function getDensityEstimate(): ?float { return $this->densityEstimate; } public function setDensityEstimate(?float $d): static { $this->densityEstimate = $d; return $this; } public function getTrend(): ?string { return $this->trend; } public function setTrend(?string $trend): static { $this->trend = $trend; return $this; } }