![]() 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/Model/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Model; use Extmag\Shiplab\Api\Data\AddressInterface; use Magento\Framework\Model\AbstractModel; class Address extends AbstractModel implements AddressInterface { /** * @return void */ protected function _construct() { parent::_construct(); $this->_init(ResourceModel\Address::class); } /** * @inheritDoc */ public function getId() { return parent::getData(self::ENTITY_ID); } /** * @inheritDoc */ public function setId($value) { return $this->setData(self::ENTITY_ID, $value); } /** * @inheritDoc */ public function getTitle() { return parent::getData(self::TITLE); } /** * @inheritDoc */ public function setTitle($title) { return $this->setData(self::TITLE, $title); } /** * @inheritDoc */ public function getCompanyName() { return parent::getData(self::COMPANY_NAME); } /** * @inheritDoc */ public function setCompanyName($companyName) { return $this->setData(self::COMPANY_NAME, $companyName); } /** * @inheritDoc */ public function getAttentionName() { return parent::getData(self::ATTENTION_NAME); } /** * @inheritDoc */ public function setAttentionName($attentionName) { return $this->setData(self::ATTENTION_NAME, $attentionName); } /** * @inheritDoc */ public function getPhone() { return parent::getData(self::PHONE); } /** * @inheritDoc */ public function setPhone($phone) { return $this->setData(self::PHONE, $phone); } /** * @inheritDoc */ public function getCountryId() { return parent::getData(self::COUNTRY_ID); } /** * @inheritDoc */ public function setCountryId($countryId) { return $this->setData(self::COUNTRY_ID, $countryId); } /** * @inheritDoc */ public function getPostalCode() { return parent::getData(self::POSTAL_CODE); } /** * @inheritDoc */ public function setPostalCode($postalCode) { return $this->setData(self::POSTAL_CODE, $postalCode); } /** * @inheritDoc */ public function getRegion() { return parent::getData(self::REGION); } /** * @inheritDoc */ public function setRegion($region) { return $this->setData(self::REGION, $region); } /** * @inheritDoc */ public function getRegionId() { return parent::getData(self::REGION_ID); } /** * @inheritDoc */ public function setRegionId($regionId) { return $this->setData(self::REGION_ID, $regionId); } /** * @inheritDoc */ public function getCity() { return parent::getData(self::CITY); } /** * @inheritDoc */ public function setCity($city) { return $this->setData(self::CITY, $city); } /** * @inheritDoc */ public function getUrbanization() { return parent::getData(self::URBANIZATION); } /** * @inheritDoc */ public function setUrbanization($urbanization) { return $this->setData(self::URBANIZATION, $urbanization); } /** * @inheritDoc */ public function getAddressLine1() { return parent::getData(self::ADDRESS_LINE_1); } /** * @inheritDoc */ public function setAddressLine1($addressLine1) { return $this->setData(self::ADDRESS_LINE_1, $addressLine1); } /** * @inheritDoc */ public function getAddressLine2() { return parent::getData(self::ADDRESS_LINE_2); } /** * @inheritDoc */ public function setAddressLine2($addressLine2) { return $this->setData(self::ADDRESS_LINE_2, $addressLine2); } /** * @inheritDoc */ public function getAddressLine3() { return parent::getData(self::ADDRESS_LINE_3); } /** * @inheritDoc */ public function setAddressLine3($addressLine3) { return $this->setData(self::ADDRESS_LINE_3, $addressLine3); } /** * @inheritDoc */ public function getFloor() { return parent::getData(self::FLOOR); } /** * @inheritDoc */ public function setFloor($floor) { return $this->setData(self::FLOOR, $floor); } /** * @inheritDoc */ public function getRoom() { return parent::getData(self::ROOM); } /** * @inheritDoc */ public function setRoom($room) { return $this->setData(self::ROOM, $room); } /** * @inheritDoc */ public function getPickupPoint() { return parent::getData(self::PICKUP_POINT); } /** * @inheritDoc */ public function setPickupPoint($pickupPoint) { return $this->setData(self::PICKUP_POINT, $pickupPoint); } /** * @inheritDoc */ public function getCreatedTime() { return parent::getData(self::CREATED_TIME); } /** * @inheritDoc */ public function setCreatedTime($createdTime) { return $this->setData(self::CREATED_TIME, $createdTime); } /** * @inheritDoc */ public function getUpdateTime() { return parent::getData(self::UPDATED_TIME); } /** * @inheritDoc */ public function setUpdateTime($updateTime) { return $this->setData(self::UPDATED_TIME, $updateTime); } /** * @inheritDoc */ public function getDestinationType() { return parent::getData(self::DESTINATION_TYPE); } /** * @inheritDoc */ public function setDestinationType($destinationType) { return $this->setData(self::DESTINATION_TYPE, $destinationType); } /** * @inheritDoc */ public function getTaxNumber() { return parent::getData(self::TAX_NUMBER); } /** * @inheritDoc */ public function setTaxNumber($taxNumber) { return $this->setData(self::TAX_NUMBER, $taxNumber); } /** * @inheritDoc */ public function getTaxType() { return parent::getData(self::TAX_TYPE); } /** * @inheritDoc */ public function setTaxType($taxType) { return $this->setData(self::TAX_TYPE, $taxType); } /** * @inheritDoc */ public function getTaxUsage() { return parent::getData(self::TAX_USAGE); } /** * @inheritDoc */ public function setTaxUsage($taxUsage) { return $this->setData(self::TAX_USAGE, $taxUsage); } /** * @inheritDoc */ public function getExportComplianceStatement() { return parent::getData(self::EXPORT_COMPLIANCE_STATEMENT); } /** * @inheritDoc */ public function setExportComplianceStatement($exComplState) { return $this->setData(self::EXPORT_COMPLIANCE_STATEMENT, $exComplState); } /** * @inheritDoc */ public function getEoriNumber() { return parent::getData(self::EORI_NUMBER); } /** * @inheritDoc */ public function setEoriNumber($eori) { return $this->setData(self::EORI_NUMBER, $eori); } }