<?php

declare(strict_types=1);

namespace Autogedal\PromoRules\Model\Rule;

/**
 * Allowed discount-blocking scope values.
 */
final class DiscountScope
{
    public const NONE = 'none';
    public const CATALOG_DISCOUNTS = 'catalog_discounts';
    public const FREE_GIFTS = 'free_gifts';
    public const CATALOG_DISCOUNTS_AND_FREE_GIFTS = 'catalog_discounts_and_free_gifts';
    public const ALL_DISCOUNTS = 'all_discounts';

    private function __construct()
    {
    }
}
