Your IP : 216.73.216.220


Current Path : /var/www/www.indacotrentino.com/www/generated/code/Magento/Quote/Api/Data/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/generated/code/Magento/Quote/Api/Data/TotalsExtension.php

<?php
namespace Magento\Quote\Api\Data;

/**
 * Extension class for @see \Magento\Quote\Api\Data\TotalsInterface
 */
class TotalsExtension extends \Magento\Framework\Api\AbstractSimpleObject implements TotalsExtensionInterface
{
    /**
     * @return string|null
     */
    public function getCouponLabel()
    {
        return $this->_get('coupon_label');
    }

    /**
     * @param string $couponLabel
     * @return $this
     */
    public function setCouponLabel($couponLabel)
    {
        $this->setData('coupon_label', $couponLabel);
        return $this;
    }

    /**
     * @return \Amasty\Rewards\Api\Data\HighlightInterface|null
     */
    public function getAmastyRewardsHighlight()
    {
        return $this->_get('amasty_rewards_highlight');
    }

    /**
     * @param \Amasty\Rewards\Api\Data\HighlightInterface $amastyRewardsHighlight
     * @return $this
     */
    public function setAmastyRewardsHighlight(\Amasty\Rewards\Api\Data\HighlightInterface $amastyRewardsHighlight)
    {
        $this->setData('amasty_rewards_highlight', $amastyRewardsHighlight);
        return $this;
    }
}