| Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/ |
| Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/GetAssetsByIdsInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\MediaGalleryApi\Api;
/**
* Get media gallery assets by id attribute
* @api
* @since 101.0.0
*/
interface GetAssetsByIdsInterface
{
/**
* Get media asset by id
*
* @param int[] $ids
* @return \Magento\MediaGalleryApi\Api\Data\AssetInterface[]
* @throws \Magento\Framework\Exception\LocalizedException
* @since 101.0.0
*/
public function execute(array $ids): array;
}