amount = $amount; $this->currency = $currency; } public function getAmount(): ?string { return $this->amount; } public function setAmount(?string $amount): void { $this->amount = $amount; } public function getCurrency(): ?string { return $this->currency; } public function setCurrency(?string $currency): void { $this->currency = $currency; } }