amount; } public function setAmount(float $amount): self { $this->amount = $amount; return $this; } public function getMeanPayment(): ?string { return $this->meanPayment; } public function setMeanPayment(string $meanPayment): self { $this->meanPayment = $meanPayment; return $this; } public function getComment(): ?string { return $this->comment; } public function setComment(string $comment): self { $this->comment = $comment; return $this; } public function getUserMerchant(): ?UserMerchant { return $this->userMerchant; } public function setUserMerchant(?UserMerchant $userMerchant): self { $this->userMerchant = $userMerchant; return $this; } }