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












































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

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the set of properties to return in an item or folder response.
 *
 * @package php-ews\Enumeration
 */
class DefaultShapeNamesType extends Enumeration
{
    /**
     * Returns all the properties used by the Exchange Business Logic layer to
     * construct a folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const ALL_PROPERTIES = 'AllProperties';

    /**
     * Returns a set of properties that are defined as the default for the item
     * or folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DEFAULT_PROPERTIES = 'Default';

    /**
     * Returns only the item or folder ID.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const ID_ONLY = 'IdOnly';
}