Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/SearchAssetsInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\MediaGalleryApi\Api;

use Magento\Framework\Api\Search\SearchResultInterface;
use Magento\Framework\Api\SearchCriteriaInterface;
use Magento\Framework\Exception\LocalizedException;

/**
 * Search media gallery assets by search criteria
 * @api
 */
interface SearchAssetsInterface
{
    /**
     * Search media gallery assets
     *
     * @param SearchCriteriaInterface $searchCriteria
     * @return AssetsSearchResultInterface[]
     * @throws LocalizedException
     */
    public function execute(SearchCriteriaInterface $searchCriteria): array;
}