GetFulfillmentInterface.php 821 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Rest\Response\Document;
  6. use Temando\Shipping\Rest\Response\DataObject\Fulfillment;
  7. /**
  8. * Temando API Get Fulfillment Document
  9. *
  10. * @package Temando\Shipping\Rest
  11. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  12. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  13. * @link https://www.temando.com/
  14. */
  15. interface GetFulfillmentInterface
  16. {
  17. /**
  18. * @return \Temando\Shipping\Rest\Response\DataObject\Fulfillment
  19. */
  20. public function getData();
  21. /**
  22. * @param \Temando\Shipping\Rest\Response\DataObject\Fulfillment $fulfillment
  23. * @return void
  24. */
  25. public function setData(Fulfillment $fulfillment);
  26. }