![]() 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 DimensionBoxInterface { /**#@+ * 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 UNIT_WEIGHT = 'unit_weight'; const UNIT_DIMENSION = 'unit_dimension'; const MAX_WEIGHT = 'max_weight'; const EMPTY_WEIGHT = 'empty_weight'; const WIDTH = 'width'; const LENGTH = 'length'; const HEIGHT = 'height'; const OUTER_WIDTH = 'outer_width'; const OUTER_LENGTH = 'outer_length'; const OUTER_HEIGHT = 'outer_height'; const IS_USED_DIMENSIONS = 'is_used_dimensions'; const QTY = 'qty'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return DimensionBoxInterface */ public function setId($value); /** * @return string|null */ public function getTitle(); /** * @param string $title * @return DimensionBoxInterface */ public function setTitle($title); /** * @return string|null */ public function getUnitWeight(); /** * @param string $unitWeight * @return DimensionBoxInterface */ public function setUnitWeight($unitWeight); /** * @return string|null */ public function getUnitDimension(); /** * @param string $unitDimension * @return DimensionBoxInterface */ public function setUnitDimension($unitDimension); /** * @return float|null */ public function getMaxWeight(); /** * @param float $maxWeight * @return DimensionBoxInterface */ public function setMaxWeight($maxWeight); /** * @return float|null */ public function getEmptyWeight(); /** * @param float $emptyWeight * @return DimensionBoxInterface */ public function setEmptyWeight($emptyWeight); /** * @return float|null */ public function getWidth(); /** * @param float $width * @return DimensionBoxInterface */ public function setWidth($width); /** * @return float|null */ public function getLength(); /** * @param float $length * @return DimensionBoxInterface */ public function setLength($length); /** * @return float|null */ public function getHeight(); /** * @param float $height * @return DimensionBoxInterface */ public function setHeight($height); /** * @return float|null */ public function getOuterWidth(); /** * @param float $outerWidth * @return DimensionBoxInterface */ public function setOuterWidth($outerWidth); /** * @return float|null */ public function getOuterLength(); /** * @param float $outerLength * @return DimensionBoxInterface */ public function setOuterLength($outerLength); /** * @return float|null */ public function getOuterHeight(); /** * @param float $outerHeight * @return DimensionBoxInterface */ public function setOuterHeight($outerHeight); /** * @return float|null */ public function getQty(); /** * @param float $qty * @return DimensionBoxInterface */ public function setQty($qty); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return DimensionBoxInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return DimensionBoxInterface */ public function setUpdateTime($updateTime); /** * @return bool|null */ public function getIsUsedDimensions(); /** * @param bool $isUsedDimensions * @return DimensionBoxInterface */ public function setIsUsedDimensions($isUsedDimensions); }