Your IP : 216.73.217.13


Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/magento/module-sales/Model/Data/Order/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/vendor/magento/module-sales/Model/Data/Order/Tax.php

<?php
/**
 * Copyright 2023 Adobe
 * All Rights Reserved.
 */
declare(strict_types=1);

namespace Magento\Sales\Model\Data\Order;

class Tax extends \Magento\Framework\Model\AbstractExtensibleModel implements
    \Magento\Tax\Api\Data\OrderTaxInterface
{
    /**
     * @inheritDoc
     */
    protected function _construct()
    {
        $this->_init(\Magento\Sales\Model\ResourceModel\Order\Tax::class);
    }

    /**
     * @inheritDoc
     */
    public function getTaxId()
    {
        return $this->getData(self::TAX_ID);
    }

    /**
     * @inheritDoc
     */
    public function setTaxId($taxId)
    {
        return $this->setData(self::TAX_ID, $taxId);
    }

    /**
     * @inheritDoc
     */
    public function getOrderId()
    {
        return $this->getData(self::ORDER_ID);
    }

    /**
     * @inheritDoc
     */
    public function setOrderId($orderId)
    {
        return $this->setData(self::ORDER_ID, $orderId);
    }

    /**
     * @inheritDoc
     */
    public function getCode()
    {
        return $this->getData(self::CODE);
    }

    /**
     * @inheritDoc
     */
    public function setCode($code)
    {
        return $this->setData(self::CODE, $code);
    }

    /**
     * @inheritDoc
     */
    public function getTitle()
    {
        return $this->getData(self::TITLE);
    }

    /**
     * @inheritDoc
     */
    public function setTitle($title)
    {
        return $this->setData(self::TITLE, $title);
    }

    /**
     * @inheritDoc
     */
    public function getPercent()
    {
        return $this->getData(self::PERCENT);
    }

    /**
     * @inheritDoc
     */
    public function setPercent($percent)
    {
        return $this->setData(self::PERCENT, $percent);
    }

    /**
     * @inheritDoc
     */
    public function getAmount()
    {
        return $this->getData(self::AMOUNT);
    }

    /**
     * @inheritDoc
     */
    public function setAmount($amount)
    {
        return $this->setData(self::AMOUNT, $amount);
    }

    /**
     * @inheritDoc
     */
    public function getBaseAmount()
    {
        return $this->getData(self::BASE_AMOUNT);
    }

    /**
     * @inheritDoc
     */
    public function setBaseAmount($baseAmount)
    {
        return $this->setData(self::BASE_AMOUNT, $baseAmount);
    }

    /**
     * @inheritDoc
     */
    public function getBaseRealAmount()
    {
        return $this->getData(self::BASE_REAL_AMOUNT);
    }

    /**
     * @inheritDoc
     */
    public function setBaseRealAmount($baseRealAmount)
    {
        return $this->setData(self::BASE_REAL_AMOUNT, $baseRealAmount);
    }

    /**
     * @inheritDoc
     */
    public function getPriority()
    {
        return $this->getData(self::PRIORITY);
    }

    /**
     * @inheritDoc
     */
    public function setPriority($priority)
    {
        return $this->setData(self::PRIORITY, $priority);
    }

    /**
     * @inheritDoc
     */
    public function getPosition()
    {
        return $this->getData(self::POSITION);
    }

    /**
     * @inheritDoc
     */
    public function setPosition($position)
    {
        return $this->setData(self::POSITION, $position);
    }

    /**
     * @inheritDoc
     */
    public function getProcess()
    {
        return $this->getData(self::PROCESS);
    }

    /**
     * @inheritDoc
     */
    public function setProcess($process)
    {
        return $this->setData(self::PROCESS, $process);
    }

    /**
     * @inheritDoc
     */
    public function getExtensionAttributes()
    {
        return $this->_getExtensionAttributes();
    }

    /**
     * @inheritDoc
     */
    public function setExtensionAttributes(
        \Magento\Tax\Api\Data\OrderTaxExtensionInterface $extensionAttributes
    ) {
        return $this->_setExtensionAttributes($extensionAttributes);
    }
}