date; } public function setDate(\DateTimeInterface $date): self { $this->date = $date; return $this; } public function getMerchant(): ?Hub { return $this->merchant; } public function setMerchant(?Hub $merchant): self { $this->merchant = $merchant; return $this; } public function getIsSent(): ?bool { return $this->isSent; } public function setIsSent(?bool $isSent): self { $this->isSent = $isSent; return $this; } }