summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php
blob: aefaeab1af98f702649dba58c7354e6efc9c46a7 (plain) (blame)
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
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\SearchResultType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the type of search to perform.
 *
 * @package php-ews\Enumeration
 */
class SearchResultType extends Enumeration
{
    /**
     * Return item preview information.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PREVIEW_ONLY = 'PreviewOnly';

    /**
     * Return the search statistics.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const STATISTICS_ONLY = 'StatisticsOnly';
}