<?php declare(strict_types=1);
namespace Acris\ShopSwitch\Components\Struct;
use Shopware\Core\Framework\Struct\Struct;
class DetectedCountryIdStruct extends Struct
{
public const EXTENSION_KEY = 'acrisShopSwitchDetectedCountryId';
private ?string $countryId;
public function __construct(?string $countryId)
{
$this->countryId = $countryId;
}
/**
* @return string|null
*/
public function getCountryId(): ?string
{
return $this->countryId;
}
/**
* @param string|null $countryId
*/
public function setCountryId(?string $countryId): void
{
$this->countryId = $countryId;
}
}