| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Api/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Api/Data/ProductSearchResultsInterface.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Api\Data;
/**
* @api
* @since 100.0.2
*/
interface ProductSearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface
{
/**
* Get attributes list.
*
* @return \Magento\Catalog\Api\Data\ProductInterface[]
*/
public function getItems();
/**
* Set attributes list.
*
* @param \Magento\Catalog\Api\Data\ProductInterface[] $items
* @return $this
*/
public function setItems(array $items);
}