27 lines
754 B
PHP
27 lines
754 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\CatalogBundle\Search;
|
|
|
|
class ElasticUpdateGroup
|
|
{
|
|
public const Price = 'price';
|
|
public const Discount = 'discount';
|
|
public const DeliveryTime = 'delivery_time';
|
|
public const InStore = 'in_store';
|
|
public const Position = 'position';
|
|
public const Ean = 'ean';
|
|
public const Code = 'code';
|
|
public const Producer = 'producer';
|
|
|
|
public const Blocek = '_blocek';
|
|
public const Variations = '_variations';
|
|
public const Sections = '_sections';
|
|
public const Parameters = '_parameters';
|
|
public const StoresInStore = '_storesInStore';
|
|
public const Labels = '_labels';
|
|
public const Photo = '_photo';
|
|
public const SectionPosition = '_sectionPosition';
|
|
}
|