id; } public function getPosition(): ?string { return $this->position; } public function setPosition(?string $position): self { $this->position = $position; return $this; } public function getStartDate(): ?\DateTimeInterface { return $this->startDate; } public function setStartDate(\DateTimeInterface $startDate): self { $this->startDate = $startDate; return $this; } public function getEndDate(): ?\DateTimeInterface { return $this->endDate; } public function setEndDate(\DateTimeInterface $endDate): self { $this->endDate = $endDate; return $this; } public function getComment(): ?string { return $this->comment; } public function setComment(?string $comment): self { $this->comment = $comment; return $this; } public function getSharedHousehold(): ?bool { return $this->sharedHousehold; } public function setSharedHousehold(bool $sharedHousehold): self { $this->sharedHousehold = $sharedHousehold; return $this; } public function getPerson(): ?Person { return $this->person; } public function setPerson(?Person $person): self { $this->person = $person; return $this; } public function getHousehold(): ?Household { return $this->household; } public function setHousehold(?Household $household): self { $this->household = $household; return $this; } }