PickupChargeInterface.php 790 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Model\Dispatch;
  6. /**
  7. * Temando Dispatch Pickup Charge 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 PickupChargeInterface
  15. {
  16. const DESCRIPTION = 'description';
  17. const AMOUNT = 'amount';
  18. const CURRENCY = 'currency';
  19. /**
  20. * @return string
  21. */
  22. public function getDescription();
  23. /**
  24. * @return string
  25. */
  26. public function getAmount();
  27. /**
  28. * @return string
  29. */
  30. public function getCurrency();
  31. }