<?php
/**
*
*/
namespace Namespace\Custom\Api\Data;
use Magento\Framework\Api\SearchResultsInterface;
/**
* Interface CustomSearchResultsInterface
* @package Namespace\Custom\Api\Data
* @api
*/
interface CustomSearchResultsInterface extends SearchResultsInterface
{
/**
* @return \Namespace\Custom\Api\Data\CustomInterface[]
*/
public function getItems();
/**
* @param \Namespace\Custom\Api\Data\CustomInterface[] $items
* @return $this
*/
public function setItems(array $items);
}