id; } public function setId(int $id): self { $this->id = $id; return $this; } public function getRef(): string { return $this->ref; } public function setRef(string $ref): self { $this->ref = $ref; return $this; } public function getDate(): \DateTime { return $this->date; } public function setDate(\DateTime $date): self { $this->date = $date; return $this; } /** * @return float */ public function getTaxExcludedAmount(): float { return $this->taxExcludedAmount; } /** * @param float $taxExcludedAmount */ public function setTaxExcludedAmount(float $taxExcludedAmount): self { $this->taxExcludedAmount = $taxExcludedAmount; return $this; } /** * @return float */ public function getTaxIncludedAmount(): float { return $this->taxIncludedAmount; } /** * @param float $taxIncludedAmount */ public function setTaxIncludedAmount(float $taxIncludedAmount): self { $this->taxIncludedAmount = $taxIncludedAmount; return $this; } public function getPaid(): bool { return $this->paid; } public function setPaid(bool $paid): self { $this->paid = $paid; return $this; } }