%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;
use stdClass;
/**
* A tax applicable to an item.
*/
class CatalogTax implements \JsonSerializable
{
/**
* @var string|null
*/
private $name;
/**
* @var string|null
*/
private $calculationPhase;
/**
* @var string|null
*/
private $inclusionType;
/**
* @var string|null
*/
private $percentage;
/**
* @var bool|null
*/
private $appliesToCustomAmounts;
/**
* @var bool|null
*/
private $enabled;
/**
* Returns Name.
*
* The tax's name. This is a searchable attribute for use in applicable query filters, and its value
* length is of Unicode code points.
*/
public function getName(): ?string
{
return $this->name;
}
/**
* Sets Name.
*
* The tax's name. This is a searchable attribute for use in applicable query filters, and its value
* length is of Unicode code points.
*
* @maps name
*/
public function setName(?string $name): void
{
$this->name = $name;
}
/**
* Returns Calculation Phase.
*
* When to calculate the taxes due on a cart.
*/
public function getCalculationPhase(): ?string
{
return $this->calculationPhase;
}
/**
* Sets Calculation Phase.
*
* When to calculate the taxes due on a cart.
*
* @maps calculation_phase
*/
public function setCalculationPhase(?string $calculationPhase): void
{
$this->calculationPhase = $calculationPhase;
}
/**
* Returns Inclusion Type.
*
* Whether to the tax amount should be additional to or included in the CatalogItem price.
*/
public function getInclusionType(): ?string
{
return $this->inclusionType;
}
/**
* Sets Inclusion Type.
*
* Whether to the tax amount should be additional to or included in the CatalogItem price.
*
* @maps inclusion_type
*/
public function setInclusionType(?string $inclusionType): void
{
$this->inclusionType = $inclusionType;
}
/**
* Returns Percentage.
*
* The percentage of the tax in decimal form, using a `'.'` as the decimal separator and without a
* `'%'` sign.
* A value of `7.5` corresponds to 7.5%.
*/
public function getPercentage(): ?string
{
return $this->percentage;
}
/**
* Sets Percentage.
*
* The percentage of the tax in decimal form, using a `'.'` as the decimal separator and without a
* `'%'` sign.
* A value of `7.5` corresponds to 7.5%.
*
* @maps percentage
*/
public function setPercentage(?string $percentage): void
{
$this->percentage = $percentage;
}
/**
* Returns Applies to Custom Amounts.
*
* If `true`, the fee applies to custom amounts entered into the Square Point of Sale
* app that are not associated with a particular `CatalogItem`.
*/
public function getAppliesToCustomAmounts(): ?bool
{
return $this->appliesToCustomAmounts;
}
/**
* Sets Applies to Custom Amounts.
*
* If `true`, the fee applies to custom amounts entered into the Square Point of Sale
* app that are not associated with a particular `CatalogItem`.
*
* @maps applies_to_custom_amounts
*/
public function setAppliesToCustomAmounts(?bool $appliesToCustomAmounts): void
{
$this->appliesToCustomAmounts = $appliesToCustomAmounts;
}
/**
* Returns Enabled.
*
* A Boolean flag to indicate whether the tax is displayed as enabled (`true`) in the Square Point of
* Sale app or not (`false`).
*/
public function getEnabled(): ?bool
{
return $this->enabled;
}
/**
* Sets Enabled.
*
* A Boolean flag to indicate whether the tax is displayed as enabled (`true`) in the Square Point of
* Sale app or not (`false`).
*
* @maps enabled
*/
public function setEnabled(?bool $enabled): void
{
$this->enabled = $enabled;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return mixed
*/
public function jsonSerialize(bool $asArrayWhenEmpty = false)
{
$json = [];
if (isset($this->name)) {
$json['name'] = $this->name;
}
if (isset($this->calculationPhase)) {
$json['calculation_phase'] = $this->calculationPhase;
}
if (isset($this->inclusionType)) {
$json['inclusion_type'] = $this->inclusionType;
}
if (isset($this->percentage)) {
$json['percentage'] = $this->percentage;
}
if (isset($this->appliesToCustomAmounts)) {
$json['applies_to_custom_amounts'] = $this->appliesToCustomAmounts;
}
if (isset($this->enabled)) {
$json['enabled'] = $this->enabled;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}