| Current Path : /home/rtorresani/www/vendor/magento/framework/Api/Search/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Api/Search/DocumentInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Api\Search;
use Magento\Framework\Api\CustomAttributesDataInterface;
/**
* Interface Search Document
*
* @api
*/
interface DocumentInterface extends CustomAttributesDataInterface
{
const ID = 'id';
/**
* @return int
*/
public function getId();
/**
* @param int $id
* @return $this
*/
public function setId($id);
}