PickupLocationSearchRequestInterface.php 728 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Api\Data\Delivery;
  6. /**
  7. * Temando Pickup Location Search Request Interface
  8. *
  9. * @api
  10. * @package Temando\Shipping\Api
  11. * @author Sebastian Ertner <sebastian.ertner@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 PickupLocationSearchRequestInterface
  16. {
  17. const SHIPPING_ADDRESS_ID = 'shipping_address_id';
  18. const ACTIVE = 'active';
  19. /**
  20. * @return int
  21. */
  22. public function getShippingAddressId();
  23. /**
  24. * @return bool
  25. */
  26. public function isActive();
  27. }