<?php
declare(strict_types=1);
namespace Zeobv\GetNotified\Struct;
use Shopware\Core\Framework\Struct\Struct;
class GetNotifiedConfig extends Struct
{
public bool $replaceAddToCart;
public bool $showEmailInput;
public bool $showQuantityInput;
public bool $show;
public bool $enableRecaptcha;
public bool $showPrivacyStatement;
public bool $allowFormForProductOnCloseout;
public bool $canShowNotificationBell;
public bool $showTitle;
public function __construct(
bool $replaceAddToCart,
bool $showEmailInput,
bool $showQuantityInput,
bool $show,
bool $enableRecaptcha,
bool $showPrivacyStatement,
bool $allowFormForProductOnCloseout,
bool $canShowNotificationBell,
bool $showTitle
) {
$this->replaceAddToCart = $replaceAddToCart;
$this->showEmailInput = $showEmailInput;
$this->showQuantityInput = $showQuantityInput;
$this->show = $show;
$this->enableRecaptcha = $enableRecaptcha;
$this->showPrivacyStatement = $showPrivacyStatement;
$this->allowFormForProductOnCloseout = $allowFormForProductOnCloseout;
$this->canShowNotificationBell = $canShowNotificationBell;
$this->showTitle = $showTitle;
}
}