1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
- * @author Mediotype https://www.mediotype.com/
- */
- namespace Vertex\Tax\Api\Data;
- use Magento\Framework\Api\SearchResultsInterface;
- /**
- * Data model representing a result from a search against the Vertex API Log
- *
- * @api
- */
- interface LogEntrySearchResultsInterface extends SearchResultsInterface
- {
- /**
- * Get log entry list.
- *
- * @return \Vertex\Tax\Api\Data\LogEntryInterface[]
- */
- public function getItems();
- /**
- * Set log entry list.
- *
- * @param \Vertex\Tax\Api\Data\LogEntryInterface[] $items
- * @return $this
- */
- public function setItems(array $items);
- }
|