Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BucketInterface.php
Go to the documentation of this file.
1 <?php
7 
14 interface BucketInterface
15 {
19  const TYPE_TERM = 'termBucket';
20 
21  const TYPE_RANGE = 'rangeBucket';
22 
23  const TYPE_DYNAMIC = 'dynamicBucket';
24 
25  const FIELD_VALUE = 'value';
26 
34  public function getType();
35 
41  public function getField();
42 
48  public function getMetrics();
49 
55  public function getName();
56 }