12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model\Cart;
- use Magento\Quote\Api\Data\TotalsAdditionalDataInterface;
- use Magento\Framework\Model\AbstractExtensibleModel;
- /**
- * @inheritDoc
- */
- class TotalsAdditionalData extends AbstractExtensibleModel implements TotalsAdditionalDataInterface
- {
- /**
- * Retrieve existing extension attributes object or create a new one.
- *
- * @return \Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface|null
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * Set an extension attributes object.
- *
- * @param \Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface $extensionAttributes
- * @return void
- */
- public function setExtensionAttributes(
- \Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface $extensionAttributes
- ) {
- $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|