File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Vat/VatRateTotal.php
<?php declare(strict_types=1);
namespace App\Vat;
use App\Vat\Models\VatScenario;
/**
* Class VatRateTotal
*
* @package App\Vat
*/
class VatRateTotal
{
private string $name;
private float $vatTotal;
private string $vatScenarioEnum;
public function getName(): string
{
return $this->name;
}
public function setName(string $name): VatRateTotal
{
$this->name = $name;
return $this;
}
public function getVatScenarioEnum(): string
{
return $this->vatScenarioEnum;
}
public function setVatScenarioEnum(string $vatScenarioEnum): VatRateTotal
{
$this->vatScenarioEnum = $vatScenarioEnum;
return $this;
}
public function getVatTotal(): float
{
return $this->vatTotal;
}
public function setVatTotal(float $vatTotal): VatRateTotal
{
$this->vatTotal = $vatTotal;
return $this;
}
}