issuer = $issuer; $this->receiver = $receiver; $this->amount = $amount; $this->originalAmount = $originalAmount; $this->currencyId = $currencyId; $this->originalCurrencyId = $originalCurrencyId; $this->currencyRate = $currencyRate; $this->tax = $tax; $this->serviceCharge = $serviceCharge; $this->paymentMethod = $paymentMethod; $this->reference = $reference; $this->status = $status; } /** * @return int */ public function getIssuer(): int { return $this->issuer; } /** * @return int */ public function getReceiver(): int { return $this->receiver; } /** * @return float */ public function getAmount(): float { return $this->amount; } /** * @return float */ public function getOriginalAmount(): float { return $this->originalAmount; } /** * @return int */ public function getCurrencyId(): int { return $this->currencyId; } /** * @return int */ public function getOriginalCurrencyId(): int { return $this->originalCurrencyId; } /** * @return float */ public function getCurrencyRate(): float { return $this->currencyRate; } /** * @return float */ public function getTax(): float { return $this->tax; } /** * @return float */ public function getServiceCharge(): float { return $this->serviceCharge; } /** * @return int */ public function getStatus(): ?int { return $this->status; } /** * @return string|null */ public function getReference(): ?string { return $this->reference; } /** * @return int */ public function getPaymentMethod(): int { return $this->paymentMethod; } }