1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Bundle\Model;
- use Magento\Framework\Model\AbstractExtensibleModel;
- use Magento\Bundle\Api\Data\BundleOptionInterface;
- class BundleOption extends AbstractExtensibleModel implements BundleOptionInterface
- {
- /**#@+
- * Constants
- */
- const OPTION_ID = 'option_id';
- const OPTION_QTY = 'option_qty';
- const OPTION_SELECTIONS = 'option_selections';
- /**#@-*/
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function getOptionId()
- {
- return $this->getData(self::OPTION_ID);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function getOptionQty()
- {
- return $this->getData(self::OPTION_QTY);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function getOptionSelections()
- {
- return $this->getData(self::OPTION_SELECTIONS);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function setOptionId($optionId)
- {
- return $this->setData(self::OPTION_ID, $optionId);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function setOptionQty($optionQty)
- {
- return $this->setData(self::OPTION_QTY, $optionQty);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function setOptionSelections(array $optionSelections)
- {
- return $this->setData(self::OPTION_SELECTIONS, $optionSelections);
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * {@inheritdoc}
- * @codeCoverageIgnore
- */
- public function setExtensionAttributes(\Magento\Bundle\Api\Data\BundleOptionExtensionInterface $extensionAttributes)
- {
- return $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|