Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/generated/code/Magento/Catalog/Api/Data/
Upload File :
Current File : //home/rtorresani/www/generated/code/Magento/Catalog/Api/Data/ProductLinkExtension.php

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

/**
 * Extension class for @see \Magento\Catalog\Api\Data\ProductLinkInterface
 */
class ProductLinkExtension extends \Magento\Framework\Api\AbstractSimpleObject implements ProductLinkExtensionInterface
{
    /**
     * @return float|null
     */
    public function getQty()
    {
        return $this->_get('qty');
    }

    /**
     * @param float $qty
     * @return $this
     */
    public function setQty($qty)
    {
        $this->setData('qty', $qty);
        return $this;
    }
}