AggregationValueInterface.php 472 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Api\Search;
  7. /**
  8. * Interface \Magento\Framework\Api\Search\AggregationValueInterface
  9. *
  10. */
  11. interface AggregationValueInterface
  12. {
  13. /**
  14. * Get aggregation
  15. *
  16. * @return string|array
  17. */
  18. public function getValue();
  19. /**
  20. * Get metrics
  21. *
  22. * @return mixed[]
  23. */
  24. public function getMetrics();
  25. }