| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Api/Search/ |
| Current File : /var/www/clients/client3/web2/web/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 \Magento\Framework\Api\Search\DocumentInterface
*
*/
interface DocumentInterface extends CustomAttributesDataInterface
{
const ID = 'id';
/**
* @return int
*/
public function getId();
/**
* @param int $id
* @return $this
*/
public function setId($id);
}