Your IP : 216.73.216.43


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

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

namespace Magento\MediaGalleryApi\Api\Data;

use Magento\MediaGalleryApi\Api\Data\AssetKeywordsExtensionInterface;
use Magento\Framework\Api\ExtensibleDataInterface;

/**
 * Interface for asset's keywords aggregation
 * @api
 * @since 101.0.0
 */
interface AssetKeywordsInterface extends ExtensibleDataInterface
{
    /**
     * Get ID
     *
     * @return int
     * @since 101.0.0
     */
    public function getAssetId(): int;

    /**
     * Get the keyword
     *
     * @return KeywordInterface[]
     * @since 101.0.0
     */
    public function getKeywords(): array;

    /**
     * Get extension attributes
     *
     * @return \Magento\MediaGalleryApi\Api\Data\AssetKeywordsExtensionInterface|null
     * @since 101.0.0
     */
    public function getExtensionAttributes(): ?AssetKeywordsExtensionInterface;

    /**
     * Set extension attributes
     *
     * @param \Magento\MediaGalleryApi\Api\Data\AssetKeywordsExtensionInterface|null $extensionAttributes
     * @return void
     * @since 101.0.0
     */
    public function setExtensionAttributes(?AssetKeywordsExtensionInterface $extensionAttributes): void;
}