![]() 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/extmag/shiplab/Api/Data/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Api\Data; /** * Cron for creating label interface. * @api */ interface LabelCronInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const ORDER_STATUS = 'order_status'; const ORDER_ID = 'order_id'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return LabelInterface */ public function setId($value); /** * @return string|null */ public function getOrderStatus(); /** * @param string $orderStatus * @return LabelInterface */ public function setOrderStatus($orderStatus); /** * @return int|null */ public function getOrderId(); /** * @param string $orderId * @return LabelInterface */ public function setOrderId($orderId); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return LabelInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return LabelInterface */ public function setUpdateTime($updateTime); }