ShipmentItemInterface.php 637 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\Model\Shipment;
  6. /**
  7. * Temando Shipment Item Interface.
  8. *
  9. * @package Temando\Shipping\Model
  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 ShipmentItemInterface
  15. {
  16. const QTY = 'qty';
  17. const SKU = 'sku';
  18. /**
  19. * @return int
  20. */
  21. public function getQty();
  22. /**
  23. * @return string
  24. */
  25. public function getSku();
  26. }