summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php
blob: d54776655237e703f35c4cb7f13db21897037c98 (plain) (tree)

































                                                                    
<?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';
}