currency_id = $currency_id; $this->selling = $selling; $this->payment_method_type = $payment_method_type; } /** * @return int */ public function getCurrencyId(): ?int { return $this->currency_id; } /** * @return string */ public function getSelling(): ?string { return $this->selling; } /** * @return string */ public function getPaymentMethodType(): ?string { return $this->payment_method_type; } }