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/GetAssetsKeywordsInterface.php

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

namespace Magento\MediaGalleryApi\Api;

/**
 * Get a media gallery asset keywords related to media gallery asset ids provided
 * @api
 * @since 101.0.0
 */
interface GetAssetsKeywordsInterface
{
    /**
     * Get assets related keywords
     *
     * @param int[] $assetIds
     * @return \Magento\MediaGalleryApi\Api\Data\AssetKeywordsInterface[]
     * @since 101.0.0
     */
    public function execute(array $assetIds): array;
}