summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php
blob: d54776655237e703f35c4cb7f13db21897037c98 (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\SearchPageDirectionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the direction for pagination in a search result.
 *
 * @package php-ews\Enumeration
 */
class SearchPageDirectionType extends Enumeration
{
    /**
     * Move to the next page in the result set.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const NEXT = 'Next';

    /**
     * Move to the previous page in the result set.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PREVIOUS = 'Previous';
}