Smile-SA/magento2-module-product-label

View on GitHub
Api/Data/ProductLabelSearchResultsInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Smile\ProductLabel\Api\Data;

use Magento\Framework\Api\SearchResultsInterface;

interface ProductLabelSearchResultsInterface extends SearchResultsInterface
{
    /**
     * Get Product label list.
     *
     * @return ProductLabelInterface[]
     */
    public function getItems(): array;

    /**
     * Set Product label list.
     */
    public function setItems(array $items): ProductLabelSearchResultsInterface;
}