LogEntrySearchResultsInterface.php 730 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
  4. * @author Mediotype https://www.mediotype.com/
  5. */
  6. namespace Vertex\Tax\Api\Data;
  7. use Magento\Framework\Api\SearchResultsInterface;
  8. /**
  9. * Data model representing a result from a search against the Vertex API Log
  10. *
  11. * @api
  12. */
  13. interface LogEntrySearchResultsInterface extends SearchResultsInterface
  14. {
  15. /**
  16. * Get log entry list.
  17. *
  18. * @return \Vertex\Tax\Api\Data\LogEntryInterface[]
  19. */
  20. public function getItems();
  21. /**
  22. * Set log entry list.
  23. *
  24. * @param \Vertex\Tax\Api\Data\LogEntryInterface[] $items
  25. * @return $this
  26. */
  27. public function setItems(array $items);
  28. }