summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php
blob: bb86932eff95c26ce79a8dee2ffef0dce09f30dc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\ResolveNamesType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to resolve ambiguous names.
 *
 * @package php-ews\Request
 */
class ResolveNamesType extends BaseRequestType
{
    /**
     * Identifies the property set returned for contacts.
     *
     * @since Exchange 2010 SP2
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\DefaultShapeNamesType
     */
    public $ContactDataShape;

    /**
     * Contains an array of contact folder identifiers that would be searched if
     * the SearchScope attribute is set to ActiveDirectoryContacts, Contacts, or
     * ContactsActiveDirectory.
     *
     * The ParentFolderIds array can only contain a single contact folder
     * identifier. If the ParentFolderIds element is not present, the default
     * Contacts folder is searched.
     *
     * The folder identifier can be used for delegate access.
     *
     * Active Directory searches are performed by using access control lists
     * (ACLs). Some users might not have the rights to see some Active Directory
     * objects.
     *
     * This element is optional.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseFolderIdsType
     */
    public $ParentFolderIds;

    /**
     * Describes whether the full contact details for public contacts for a
     * resolved name are returned in the response.
     *
     * This attribute is required for public contacts. This value does not
     * affect private contacts and private distribution lists, for which ItemId
     * is always returned.
     *
     * @since Exchange 2007
     *
     * @var boolean
     */
    public $ReturnFullContactData;

    /**
     * Identifies the order and scope for a ResolveNames search.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ResolveNamesSearchScopeType
     */
    public $SearchScope;

    /**
     * Contains the name of a contact or distribution list to resolve.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $UnresolvedEntry;
}