summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetConversationItemsType.php
blob: 5a9f2cc60c26e53a43633a0896aafb073add33d3 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\GetConversationItemsType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to get a set of items that are related by being in the same
 * conversation.
 *
 * @package php-ews\Request
 */
class GetConversationItemsType extends BaseRequestType
{
    /**
     * Contains an array of conversations to get items for.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfConversationsType
     */
    public $Conversations;

    /**
     * Identifies a list of folders that are ignored when getting items in a
     * conversation.
     *
     * All conversation items in the ignored folders are not returned in the
     * response.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseFolderIdsType
     */
    public $FoldersToIgnore;

    /**
     * Identifies a set of properties to return.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemResponseShapeType
     */
    public $ItemShape;

    /**
     * Identifies whether a search or fetch for a conversation should span
     * either the primary mailbox, archive mailbox, or both the primary and
     * archive mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\MailboxSearchLocationType
     */
    public $MailboxScope;

    /**
     * Identifies the maximum number of conversations items to return.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $MaxItemsToReturn;

    /**
     * Specifies the sort order used for the result.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ConversationNodeSortOrder
     */
    public $SortOrder;
}