%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
/**
* Indicates how the tax is applied to the associated line item or order.
*/
class OrderLineItemTaxType
{
/**
* Used for reporting only.
* The original transaction tax type is currently not supported by the API.
*/
public const UNKNOWN_TAX = 'UNKNOWN_TAX';
/**
* The tax is an additive tax. The tax amount is added on top of the price.
* For example, an item with a cost of 1.00 USD and a 10% additive tax has a total
* cost to the buyer of 1.10 USD.
*/
public const ADDITIVE = 'ADDITIVE';
/**
* The tax is an inclusive tax. Inclusive taxes are already included
* in the line item price or order total. For example, an item with a cost of
* 1.00 USD and a 10% inclusive tax has a pretax cost of 0.91 USD
* (91 cents) and a 0.09 (9 cents) tax for a total cost of 1.00 USD to
* the buyer.
*/
public const INCLUSIVE = 'INCLUSIVE';
}