![]() 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; /** * Interface OrderTaxDetailsAppliedTaxInterface * @api * @since 100.0.2 */ interface OrderTaxDetailsAppliedTaxInterface 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); /** * Get tax amount * * @return float */ public function getAmount(); /** * Set tax amount * * @param float $amount * @return $this */ public function setAmount($amount); /** * Get tax amount in base currency * * @return float */ public function getBaseAmount(); /** * Set tax amount in base currency * * @param float $baseAmount * @return $this */ public function setBaseAmount($baseAmount); /** * Retrieve existing extension attributes object or create a new one. * * @return \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface|null */ public function getExtensionAttributes(); /** * Set an extension attributes object. * * @param \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes( \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxExtensionInterface $extensionAttributes ); }