ListRequestInterface.php 740 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Rest\Request;
  6. /**
  7. * Temando API Item Listing Operation
  8. *
  9. * @package Temando\Shipping\Rest
  10. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  11. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  12. * @link https://www.temando.com/
  13. */
  14. interface ListRequestInterface
  15. {
  16. /**
  17. * Obtain query/post parameters.
  18. *
  19. * @return string[]
  20. */
  21. public function getRequestParams();
  22. /**
  23. * Obtain url path parameters, i.e. entity ids, in order of appearance.
  24. *
  25. * @return string[]
  26. */
  27. public function getPathParams();
  28. }