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


































                                                                        
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\AggregateType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Indicates the maximum or minimum value of a property that is used for
 * ordering groups of items.
 *
 * @package php-ews\Enumeration
 */
class AggregateType extends Enumeration
{
    /**
     * Indicates that a maximum aggregation should be used.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const MAXIMUM = 'Maximum';

    /**
     * Indicates that a minimum aggregation should be used.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const MINIMUM = 'Minimum';
}