![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Model/Product/Price/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Price; use Magento\Catalog\Api\Data\TierPriceInterface; /** * TierPrice DTO. */ class TierPrice extends \Magento\Framework\Model\AbstractExtensibleModel implements TierPriceInterface { /** * {@inheritdoc} */ public function setPrice($price) { return $this->setData(self::PRICE, $price); } /** * {@inheritdoc} */ public function getPrice() { return $this->getData(self::PRICE); } /** * {@inheritdoc} */ public function setPriceType($type) { return $this->setData(self::PRICE_TYPE, $type); } /** * {@inheritdoc} */ public function getPriceType() { return $this->getData(self::PRICE_TYPE); } /** * {@inheritdoc} */ public function setWebsiteId($websiteId) { return $this->setData(self::WEBSITE_ID, $websiteId); } /** * {@inheritdoc} */ public function getWebsiteId() { return $this->getData(self::WEBSITE_ID); } /** * {@inheritdoc} */ public function setSku($sku) { return $this->setData(self::SKU, $sku); } /** * {@inheritdoc} */ public function getSku() { return $this->getData(self::SKU); } /** * {@inheritdoc} */ public function setCustomerGroup($group) { return $this->setData(self::CUSTOMER_GROUP, $group); } /** * {@inheritdoc} */ public function getCustomerGroup() { return $this->getData(self::CUSTOMER_GROUP); } /** * {@inheritdoc} */ public function setQuantity($quantity) { return $this->setData(self::QUANTITY, $quantity); } /** * {@inheritdoc} */ public function getQuantity() { return $this->getData(self::QUANTITY); } /** * {@inheritdoc} */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Catalog\Api\Data\TierPriceExtensionInterface $extensionAttributes) { return $this->_setExtensionAttributes($extensionAttributes); } }