![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/amasty/feed/Api/Data/ |
<?php /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Product Feed for Magento 2 */ namespace Amasty\Feed\Api\Data; interface ScheduleInterface { /**#@+ * Constants defined for keys of data array */ public const ID = 'id'; public const FEED_ID = 'feed_id'; public const CRON_TIME = 'cron_time'; public const CRON_DAY = 'cron_day'; /**#@-*/ /** * Returns id field * * @return int */ public function getId(); /** * @param int $id * * @return $this */ public function setId($id); /** * Returns feed_id field * * @return int */ public function getFeedId(); /** * @param int $feedId * * @return $this */ public function setFeedId($feedId); /** * Returns cron_time field * * @return int */ public function getCronTime(); /** * @param int $cronTime * * @return $this */ public function setCronTime($cronTime); /** * Returns cron_day field * * @return int */ public function getCronDay(); /** * @param int $cronDay * * @return $this */ public function setCronDay($cronDay); }