| Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/ |
| Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/SaveAssetsKeywordsInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\MediaGalleryApi\Api;
/**
* Save keywords related to assets to the database
* @api
* @since 101.0.0
*/
interface SaveAssetsKeywordsInterface
{
/**
* Save assets keywords
*
* @param \Magento\MediaGalleryApi\Api\Data\AssetKeywordsInterface[] $assetKeywords
* @return void
* @throws \Magento\Framework\Exception\CouldNotSaveException
* @since 101.0.0
*/
public function execute(array $assetKeywords): void;
}