<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package GDPR Base for Magento 2
 */

namespace Amasty\Gdpr\Model\Consent;

class RegistryConstants
{
    public const CONSENT_FROM = 'am-gdpr-checkboxes-from';
    public const CONSENTS = 'amgdpr_agreement';
    public const CUSTOMER_ID = 'customer_id';
    public const STORE_ID = 'store_id';
    public const EMAIL = 'email';
    public const LINK_PLACEHOLDER = '{link}';
}
