AAAAhome/academiac/www/plugins/vmpayment/sofort/sofort/library/helper/pnag_article.php000060400000005004151376511460024630 0ustar00itemId = $itemId; $this->productNumber = $productNumber; $this->productType = $productType; $this->title = $title; $this->description = $description; $this->quantity = $quantity; $this->unitPrice = $unitPrice; $this->tax = $tax; } /** * * Getter for item id */ public function getItemId () { return $this->itemId; } /** * * Getter for quantity */ public function getQuantity() { return $this->quantity; } /** * * Setter for quantity * @param int $quantity */ public function setQuantity($quantity) { $this->quantity = $quantity; } /** * * Getter for unit price */ public function getUnitPrice() { return $this->unitPrice; } /** * * Setter for unit price * @param float $unitPrice */ public function setUnitPrice($unitPrice) { $this->unitPrice = $unitPrice; } /** * * Getter for title */ public function getTitle() { return $this->title; } /** * * Getter for tax value */ public function getTax() { return $this->tax; } /** * * Setter for tax value * @param float $value */ public function setTax($value) { $this->tax = $value; } /** * * Setter for product number * @param string $productNumber */ public function setProductNumber($productNumber) { $this->productNumber = $productNumber; } /** * * Getter for product number */ public function getProductNumber() { return $this->productNumber; } /** * * Setter for description * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * * Getter for description */ public function getDescription() { return $this->description; } } ?>