summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BasePagingType.php
blob: 345ef47e25a1ea7618029af848090ea66200bfa3 (plain) (tree)

























                                                                              
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\BasePagingType.
 */

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Base class for defining how results should be paged.
 *
 * @package php-ews\Type
 */
abstract class BasePagingType extends Type
{
    /**
     * Describes the maximum number of items or conversations to return in the
     * response.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $MaxEntriesReturned;
}