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

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the type of preview to be returned for an item.
 *
 * @package php-ews\Enumeration
 */
class PreviewItemBaseShapeType extends Enumeration
{
    /**
     * Indicates that only selected properties are shown.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const COMPACT = 'Compact';

    /**
     * Indicates that all properties are shown.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const DEFAULT_SHAPE = 'Default';
}