summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PathToIndexedFieldType.php
blob: c5033701e78b5b414a5e6485f4a7210701055f52 (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
35
36
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\PathToIndexedFieldType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Identifies individual members of a dictionary.
 *
 * @package php-ews\Type
 */
class PathToIndexedFieldType extends BasePathToElementType
{
    /**
     * Identifies the member of the dictionary to return.
     *
     * This attribute is required.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $FieldIndex;

    /**
     * FieldURI property
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\DictionaryURIType
     */
    public $FieldURI;
}