GetShipment.php 999 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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\Shipment;
  7. /**
  8. * Temando API Get Shipment 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. class GetShipment implements GetShipmentInterface
  16. {
  17. /**
  18. * @var \Temando\Shipping\Rest\Response\DataObject\Shipment
  19. */
  20. private $data;
  21. /**
  22. * @return \Temando\Shipping\Rest\Response\DataObject\Shipment
  23. */
  24. public function getData()
  25. {
  26. return $this->data;
  27. }
  28. /**
  29. * @param \Temando\Shipping\Rest\Response\DataObject\Shipment $shipment
  30. * @return void
  31. */
  32. public function setData(Shipment $shipment)
  33. {
  34. $this->data = $shipment;
  35. }
  36. }