id; } public function setId(?int $id): void { $this->id = $id; } public function getAmount(): float { return (float) $this->amount; } public function getComment(): ?CommentEmbeddable { return $this->comment; } public function getEvent(): Event { return $this->event; } public function getKind(): EventBudgetKind { return $this->kind; } public function setAmount(string $amount): self { $this->amount = $amount; return $this; } public function setComment(?CommentEmbeddable $comment = null): self { $this->comment = $comment; return $this; } public function setEvent(Event $event): self { $this->event = $event; return $this; } public function setKind(EventBudgetKind $kind): self { $this->kind = $kind; return $this; } }