createdAt = new \DateTime(); $this->status = 'new'; } public function getId(): ?int { return $this->id; } public function getQuery(): ?string { return $this->query; } public function setQuery(string $query): static { $this->query = $query; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(?string $email): static { $this->email = $email; return $this; } public function getInsee(): ?int { return $this->insee; } public function setInsee(?int $insee): static { $this->insee = $insee; return $this; } public function getCreatedAt(): ?\DateTimeInterface { return $this->createdAt; } public function setCreatedAt(\DateTimeInterface $createdAt): static { $this->createdAt = $createdAt; return $this; } public function getStatus(): ?string { return $this->status; } public function setStatus(string $status): static { $this->status = $status; return $this; } public function getPlaceUuid(): ?string { return $this->placeUuid; } public function setPlaceUuid(?string $placeUuid): static { $this->placeUuid = $placeUuid; return $this; } public function getLastContactAttempt(): ?\DateTimeInterface { return $this->lastContactAttempt; } public function setLastContactAttempt(?\DateTimeInterface $lastContactAttempt): static { $this->lastContactAttempt = $lastContactAttempt; return $this; } public function getPlace(): ?Place { return $this->place; } public function setPlace(?Place $place): static { $this->place = $place; return $this; } public function getOsmObjectType(): ?string { return $this->osmObjectType; } public function setOsmObjectType(?string $osmObjectType): static { $this->osmObjectType = $osmObjectType; return $this; } public function getOsmId(): ?int { return $this->osmId; } public function setOsmId(?int $osmId): static { $this->osmId = $osmId; return $this; } }