Overview

Namespaces

  • Apptus
    • ESales
      • Connector
        • Report
        • Time
    • Util
      • Cache
  • PHP
  • Overview
  • Namespace
  • Class
  • Tree
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 
<?php
namespace Apptus\ESales\Connector;

/**
 * Result types.
 */
final class ResultType {
    /** Auto correction suggestions */
    const COMPLETIONS = 'COMPLETIONS';
    /** Did-you-mean suggestions */
    const CORRECTIONS = 'CORRECTIONS';
    /** Result count */
    const COUNT = 'COUNT';
    /** Products */
    const PRODUCTS = 'PRODUCTS';
    /** Values */
    const VALUES = 'VALUES';
    /** Phrases */
    const PHRASES = 'PHRASES';
    /** Ads */
    const ADS = 'ADS';
    /** Category */
    const CATEGORY_TREE = 'CATEGORY';
    /** Categories */
    const CATEGORY_LIST = 'CATEGORIES';
    /** Facet range */
    const FACET_RANGE = 'FACET_RANGE';
    /** Facetlist */
    const FACET_LIST = 'FACET_LIST';

    private final function __construct() {
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen