123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?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
- );
- }
|