![]() 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; interface ShipperAccountInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const TITLE = 'title'; const CARRIER_CODE = 'carrier_code'; const LICENSE = 'license'; const USER_ID = 'user_id'; const PASSWORD = 'password'; const SHIPPER_NUMBER = 'shipper_number'; const LOGO = 'logo'; const SIGNATURE = 'signature'; const TIMEZONE = 'timezone'; const MODE = 'mode'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return ShipperAccountInterface */ public function setId($value); /** * @return string|null */ public function getTitle(); /** * @param string $title * @return ShipperAccountInterface */ public function setTitle($title); /** * @return string|null */ public function getCarrierCode(); /** * @param string $carrierCode * @return ShipperAccountInterface */ public function setCarrierCode($carrierCode); /** * @return string|null */ public function getLicense(); /** * @param string $license * @return ShipperAccountInterface */ public function setLicense($license); /** * @return string|null */ public function getUserId(); /** * @param string $userId * @return ShipperAccountInterface */ public function setUserId($userId); /** * @return string|null */ public function getPassword(); /** * @param string $password * @return ShipperAccountInterface */ public function setPassword($password); /** * @return string|null */ public function getShipperNumber(); /** * @param string $shipperNumber * @return ShipperAccountInterface */ public function setShipperNumber($shipperNumber); /** * @return string|null */ public function getTimezone(); /** * @param string $timezone * @return ShipperAccountInterface */ public function setTimezone($timezone); /** * @return int|null */ public function getMode(); /** * Set mode (Test and Live) * * @param string $mode * @return ShipperAccountInterface */ public function setMode($mode); /** * @return string|null */ public function getLogo(); /** * @param string $logo * @return ShipperAccountInterface */ public function setLogo($logo); /** * @return string|null */ public function getSignature(); /** * @param string $signature * @return ShipperAccountInterface */ public function setSignature($signature); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return ShipperAccountInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return ShipperAccountInterface */ public function setUpdateTime($updateTime); }