taxType = $taxType; $this->taxRate = $taxRate; $this->taxAmount = $taxAmount; $this->taxableAmount = $taxableAmount; } public function toArray() { return [ 'taxType' => $this->taxType, 'taxRate' => $this->taxRate, 'taxAmount' => $this->taxAmount->toArray(), 'taxableAmount' => $this->taxableAmount->toArray(), ]; } }