summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.php
blob: 4de63da8bfa6c6db64e65f8e153d1306d62409ba (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\SearchMailboxesResultType.
 */

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines the result of a SearchMailboxes request.
 *
 * @package php-ews\Type
 */
class SearchMailboxesResultType extends Type
{
    /**
     * Contains a list of mailboxes and associated queries for discovery search.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfMailboxQueriesType
     */
    public $SearchQueries;

    /**
     * Contains the type of search to perform.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\SearchResultType
     */
    public $ResultType;

    /**
     * Specifies the total number of items in a search result.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $ItemCount;

    /**
     * Specifies the total size of one or more mailbox items.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $Size;

    /**
     * Specifies the number of pages returned in a search result pagination.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $PageItemCount;

    /**
     * Specifies the number of items to return in a search result pagination.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $PageItemSize;

    /**
     * Specifies a list of one or more KeywordStat elements.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfKeywordStatisticsSearchResultsType
     */
    public $KeywordStats;

    /**
     * Specifies a list of items available for preview.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSearchPreviewItemsType
     */
    public $Items;

    /**
     *
     *
     * @since Exchange 2013
     *
     * @var
     */
    public $FailedMailboxes;

    /**
     *
     *
     * @since Exchange 2013
     *
     * @var
     */
    public $Refiners;

    /**
     *
     *
     * @since Exchange 2013
     *
     * @var
     */
    public $MailboxStats;
}