![]() 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/magento/module-tax/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api\Data; /** * Applied tax rate interface. * @api * @since 100.0.2 */ interface AppliedTaxRateInterface extends \Magento\Framework\Api\ExtensibleDataInterface { /** * Get code * * @return string|null */ public function getCode(); /** * Set code * * @param string $code * @return $this */ public function setCode($code); /** * Get Title * * @return string|null */ public function getTitle(); /** * Set Title * * @param string $title * @return $this */ public function setTitle($title); /** * Get Tax Percent * * @return float|null */ public function getPercent(); /** * Set Tax Percent * * @param float $percent * @return $this */ public function setPercent($percent); /** * Retrieve existing extension attributes object or create a new one. * * @return \Magento\Tax\Api\Data\AppliedTaxRateExtensionInterface|null */ public function getExtensionAttributes(); /** * Set an extension attributes object. * * @param \Magento\Tax\Api\Data\AppliedTaxRateExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes(\Magento\Tax\Api\Data\AppliedTaxRateExtensionInterface $extensionAttributes); }