FulfillmentRequestInterface.php 797 B

1234567891011121314151617181920212223242526272829303132
  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 Fulfillment Operation Parameters
  8. *
  9. * @deprecated since 1.5.0 | use implementation
  10. *
  11. * @package Temando\Shipping\Rest
  12. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  13. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link http://www.temando.com/
  15. */
  16. interface FulfillmentRequestInterface
  17. {
  18. /**
  19. * Obtain url path parameters, i.e. entity ids, in order of appearance.
  20. *
  21. * @return string[]
  22. */
  23. public function getPathParams();
  24. /**
  25. * Obtain raw post data.
  26. *
  27. * @return mixed
  28. */
  29. public function getRequestBody();
  30. }