ShippingCategoryInterface.php 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace Cpcommerce\ShippingNotifications\Api\Data;
  3. interface ShippingCategoryInterface
  4. {
  5. const SHIP_CATEG_ID = 'ship_categ_id';
  6. const OPTION_ID = 'option_id';
  7. const IS_DELAYED = 'is_delayed';
  8. /**
  9. * Get Ship Categ Id
  10. *
  11. * @return int|null
  12. */
  13. public function getShipCategId();
  14. /**
  15. * Set Ship Categ Id
  16. *
  17. * @param int $shipCategId
  18. * @return $this
  19. */
  20. public function setShipCategId($shipCategId);
  21. /**
  22. * Get Option Id
  23. *
  24. * @return int|null
  25. */
  26. public function getOptionId();
  27. /**
  28. * Set Option Id
  29. *
  30. * @param int $optionId
  31. * @return $this
  32. */
  33. public function setOptionId($optionId);
  34. /**
  35. * Get Is Delayed
  36. *
  37. * @return int|null
  38. */
  39. public function getIsDelayed();
  40. /**
  41. * Set Option Id
  42. *
  43. * @param int $isDelayed
  44. * @return $this
  45. */
  46. public function setIsDelayed($isDelayed);
  47. }