PaginationInterface.php 598 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Webservice\Pagination;
  6. /**
  7. * Webservice Pagination
  8. *
  9. * Add pagination parameters to web service list requests
  10. *
  11. * @package Temando\Shipping\Webservice
  12. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  13. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link https://www.temando.com/
  15. */
  16. interface PaginationInterface
  17. {
  18. /**
  19. * @return string[]
  20. */
  21. public function getPageParams();
  22. }