serviceId = $serviceId; $this->transferableBankId = $transferableBankId; $this->marking = $marking; $this->fixAmount = $fixAmount; $this->fixCurrencyId = $fixCurrencyId; $this->convertibleCurrencyId = $convertibleCurrencyId; $this->conversionCurrencyId = $conversionCurrencyId; } /** * @return int */ public function getServiceId(): int { return $this->serviceId; } /** * @return int */ public function getTransferableBankId(): int { return $this->transferableBankId; } /** * @return string */ public function getMarking(): string { return $this->marking; } /** * @return float */ public function getFixAmount(): float { return $this->fixAmount; } /** * @return int */ public function getFixCurrencyId(): int { return $this->fixCurrencyId; } /** * @return int */ public function getConvertibleCurrencyId(): int { return $this->convertibleCurrencyId; } /** * @return int */ public function getConversionCurrencyId(): int { return $this->conversionCurrencyId; } }