company_id = $company_id; $this->currency_id = $currency; $this->code = $code; $this->amount = $amount; } /** * @return int */ public function getCompanyId(): int { return $this->company_id; } /** * @return int */ public function getCurrency(): int { return $this->currency_id; } /** * @return int */ public function getCode(): int { return $this->code; } public function getAmount(): float { return $this->amount; } }