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

namespace Leadlion\SmartBill\Api\Data;

interface InvoiceSearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface
{

    /**
     * Get Invoice list.
     * @return \Leadlion\SmartBill\Api\Data\InvoiceInterface[]
     */
    public function getItems();

    /**
     * Set id list.
     * @param \Leadlion\SmartBill\Api\Data\InvoiceInterface[] $items
     * @return $this
     */
    public function setItems(array $items);
}

