first commit

This commit is contained in:
2024-10-25 14:16:28 +02:00
commit 925276dbb2
33795 changed files with 4780077 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace x13allegro\Api\Model\Offers\TaxSettings\Enum;
use x13allegro\Component\Enum;
/**
* @method static TaxCZ TAX_21()
* @method static TaxCZ TAX_15()
* @method static TaxCZ TAX_10()
*/
final class TaxCZ extends Enum
{
static $backedEnum = true;
const TAX_21 = '21.00';
const TAX_15 = '15.00';
const TAX_10 = '10.00';
const TAX_EXEMPT = 'EXEMPT';
/**
* @return string[]
*/
public static function translateValues()
{
return [
self::TAX_21 => '21%',
self::TAX_15 => '15%',
self::TAX_10 => '10%',
self::TAX_EXEMPT => 'ZW'
];
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace x13allegro\Api\Model\Offers\TaxSettings\Enum;
use x13allegro\Component\Enum;
/**
* @method static TaxPL TAX_23()
* @method static TaxPL TAX_8()
* @method static TaxPL TAX_5()
* @method static TaxPL TAX_EXEMPT()
*/
final class TaxPL extends Enum
{
static $backedEnum = true;
const TAX_23 = '23.00';
const TAX_8 = '8.00';
const TAX_5 = '5.00';
const TAX_EXEMPT = 'EXEMPT';
/**
* @return string[]
*/
public static function translateValues()
{
return [
self::TAX_23 => '23%',
self::TAX_8 => '8%',
self::TAX_5 => '5%',
self::TAX_EXEMPT => 'ZW'
];
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace x13allegro\Api\Model\Offers\TaxSettings\Enum;
use x13allegro\Component\Enum;
/**
* @method static TaxSK TAX_20()
* @method static TaxSK TAX_10()
* @method static TaxSK TAX_5()
*/
final class TaxSK extends Enum
{
static $backedEnum = true;
const TAX_20 = '20.00';
const TAX_10 = '10.00';
const TAX_5 = '5.00';
const TAX_EXEMPT = 'EXEMPT';
/**
* @return string[]
*/
public static function translateValues()
{
return [
self::TAX_20 => '20%',
self::TAX_10 => '10%',
self::TAX_5 => '5%',
self::TAX_EXEMPT => 'ZW'
];
}
}