companyId = $companyId; $this->transactionId = $transactionId; $this->promoCode = $promoCode; $this->amount = $amount; $this->serviceCharge = $serviceCharge; $this->employee = $employee; $this->voucherifyOrderId = $voucherifyOrderId; $this->isNewOrder = $isNewOrder; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return int */ public function getTransactionId(): int { return $this->transactionId; } /** * @return string */ public function getPromoCode(): string { return $this->promoCode; } /** * @return float */ public function getAmount(): float { return $this->amount; } /** * @return float */ public function getServiceCharge(): float { return $this->serviceCharge; } /** * @return object */ public function getEmployee(): object { return $this->employee; } /** * @return string */ public function getVoucherifyOrderId(): string { return $this->voucherifyOrderId; } /** * @return bool|null */ public function getIsNewOrder(): ?bool { return $this->isNewOrder; } }