. */ namespace Storefront\BTCPay\Api\Data; interface InvoiceSearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface { /** * Get Invoice list. * @return \Storefront\BTCPay\Api\Data\InvoiceInterface[] */ public function getItems(); /** * Set invoice_status list. * @param \Storefront\BTCPay\Api\Data\InvoiceInterface[] $items * @return $this */ public function setItems(array $items); }