![]() 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 ShippingMethodsInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const ADMIN_TITLE = 'admin_title'; const CARRIER = 'carrier'; const CARRIER_TITLE = 'carrier_title'; const CARRIER_METHODS_TYPE = 'carrier_methods_type'; const PRICE = 'price'; const CARRIER_METHODS = 'carrier_methods'; const CONDITIONS_SERIALIZED = 'conditions_serialized'; const ACTIONS_SERIALIZED = 'actions_serialized'; const STATUS = 'status'; const FREE_SHIPPING = 'free_shipping'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; const WEBSITE_TYPE = 'website_type'; const WEBSITE_IDS = 'website_ids'; const CUSTOMER_GROUP_TYPE = 'customer_group_type'; const CUSTOMER_GROUP_IDS = 'customer_group_ids'; const CARRIER_DISCOUNT = 'carrier_discount'; const ACCESS_POINT = 'access_point'; const IS_TIT = 'is_tit'; const TIT_FORMAT = 'tit_format'; const TIT_PREFIX = 'tit_prefix'; const TIT_SUFFIX = 'tit_suffix'; const AREA = 'area'; const DATE_FROM = 'date_from'; const DATE_TO = 'date_to'; const FREQUENCY = 'frequency'; const DAY_WEEK = 'day_week'; const LOGO = 'logo'; const PRICE_RULE_IDS = 'price_rule_ids'; const METHODS_NAMES_MAPPING = 'methods_names_mapping'; const PRICE_RULES_APPLY = 'price_rules_apply'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return ShippingMethodsInterface */ public function setId($value); /** * @return string|null */ public function getAdminTitle(); /** * @param string $title * @return ShippingMethodsInterface */ public function setAdminTitle($title); /** * @return string|null */ public function getCarrier(); /** * @param string $carrier * @return ShippingMethodsInterface */ public function setCarrier($carrier); /** * @return string|null */ public function getCarrierTitle(); /** * @param string $carrierTitle * @return ShippingMethodsInterface */ public function setCarrierTitle($carrierTitle); /** * @return string|null */ public function getCarrierMethodsType(); /** * @param string $carrierMethodsType * @return ShippingMethodsInterface */ public function setCarrierMethodsType($carrierMethodsType); /** * @return string|null */ public function getPrice(); /** * @param string $price * @return ShippingMethodsInterface */ public function setPrice($price); /** * @return string|null */ public function getCarrierMethods(); /** * @param string $carrierMethods * @return ShippingMethodsInterface */ public function setCarrierMethods($carrierMethods); /** * Get conditions rules * * @return string|null */ public function getConditionsSerialized(); /** * Set conditions rule * * @param string $conditions * @return ShippingMethodsInterface */ public function setConditionsSerialized($conditions); /** * Get actions rules * * @return string|null */ public function getActionsSerialized(); /** * Set actions rule * * @param string $actions * @return ShippingMethodsInterface */ public function setActionsSerialized($actions); /** * @return int|null */ public function getStatus(); /** * @param int $status * @return ShippingMethodsInterface */ public function setStatus($status); /** * @return int|null */ public function getFreeShipping(); /** * @param int $freeShipping * @return ShippingMethodsInterface */ public function setFreeShipping($freeShipping); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return ShippingMethodsInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return ShippingMethodsInterface */ public function setUpdateTime($updateTime); /** * @return string|null */ public function getWebsiteType(); /** * @param string $websiteType * @return ShippingMethodsInterface */ public function setWebsiteType($websiteType); /** * @return string|null */ public function getWebsiteIds(); /** * @param string $websiteIds * @return ShippingMethodsInterface */ public function setWebsiteIds($websiteIds); /** * @return string|null */ public function getCustomerGroupType(); /** * @param string $customerGroupType * @return ShippingMethodsInterface */ public function setCustomerGroupType($customerGroupType); /** * @return string|null */ public function getCustomerGroupIds(); /** * @param string $customerGroupIds * @return ShippingMethodsInterface */ public function setCustomerGroupIds($customerGroupIds); /** * @return int|null */ public function getCarrierDiscount(); /** * @param int $carrierDiscount * @return ShippingMethodsInterface */ public function setCarrierDiscount($carrierDiscount); /** * @return int|null */ public function getAccessPoint(); /** * @param int $accessPoint * @return ShippingMethodsInterface */ public function setAccessPoint($accessPoint); /** * Get is time in transit * * @return int|null */ public function getIsTit(); /** * Set is time in transit * * @param int $isTit * @return ShippingMethodsInterface */ public function setIsTit($isTit); /** * Get time in transit format * * @return string|null */ public function getTitFormat(); /** * Set time in transit format * * @param string $titFormat * @return ShippingMethodsInterface */ public function setTitFormat($titFormat); /** * Get time in transit prefix * * @return string|null */ public function getTitPrefix(); /** * Set time in transit prefix * * @param string $titPrefix * @return ShippingMethodsInterface */ public function setTitPrefix($titPrefix); /** * Get time in transit suffix * * @return string|null */ public function getTitSuffix(); /** * Set time in transit suffix * * @param string $titSuffix * @return ShippingMethodsInterface */ public function setTitSuffix($titSuffix); /** * @return string|null */ public function getArea(); /** * @param string $area * @return ShippingMethodsInterface */ public function setArea($area); /** * @return string|null */ public function getDateFrom(); /** * @param string $dateFrom * @return ShippingMethodsInterface */ public function setDateFrom($dateFrom); /** * @return string|null */ public function getDateTo(); /** * @param string $dateTo * @return ShippingMethodsInterface */ public function setDateTo($dateTo); /** * @return string|null */ public function getFrequency(); /** * @param string $frequency * @return ShippingMethodsInterface */ public function setFrequency($frequency); /** * Get Days of Week * * @return string|null */ public function getDayWeek(); /** * Set Days of Week * * @param string $data * @return ShippingMethodsInterface */ public function setDayWeek($data); /** * Get Logo * * @return string|null */ public function getLogo(); /** * Set Logo * * @param string $logo * @return ShippingMethodsInterface */ public function setLogo($logo); /** * Get Price Rule Ids * * @return string|null */ public function getPriceRuleIds(); /** * Set Price Rule Ids * * @param string $data * @return ShippingMethodsInterface */ public function setPriceRuleIds($data); /** * Get Rules Apply * * @return string|null */ public function getPriceRulesApply(); /** * Set Rules Apply * * @param string $data * @return ShippingMethodsInterface */ public function setPriceRulesApply($data); /** * Get Methods Names Mapping * * @return string|null */ public function getMethodsNamesMapping(); /** * Set Methods Names Mapping * * @param string $data * @return ShippingMethodsInterface */ public function setMethodsNamesMapping($data); }