| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Cpcommerce\ShippingNotifications\Api\Data;
- interface ShippingCategoryInterface
- {
- const SHIP_CATEG_ID = 'ship_categ_id';
- const OPTION_ID = 'option_id';
- const IS_DELAYED = 'is_delayed';
- /**
- * Get Ship Categ Id
- *
- * @return int|null
- */
- public function getShipCategId();
- /**
- * Set Ship Categ Id
- *
- * @param int $shipCategId
- * @return $this
- */
- public function setShipCategId($shipCategId);
- /**
- * Get Option Id
- *
- * @return int|null
- */
- public function getOptionId();
- /**
- * Set Option Id
- *
- * @param int $optionId
- * @return $this
- */
- public function setOptionId($optionId);
- /**
- * Get Is Delayed
- *
- * @return int|null
- */
- public function getIsDelayed();
- /**
- * Set Option Id
- *
- * @param int $isDelayed
- * @return $this
- */
- public function setIsDelayed($isDelayed);
- }
|