summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchPreviewItemType.php
blob: 4c0033d9826b5c503a11f4f9d87bfcf7ce121ea7 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\SearchPreviewItemType.
 */

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines an item preview for a discovery search.
 *
 * @package php-ews\Type
 */
class SearchPreviewItemType extends Type
{
    /**
     * Represents a collection of recipients to receive a blind carbon copy
     * (Bcc) of an e-mail message.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfRecipientsType
     */
    public $BccRecipients;

    /**
     * Represents a collection of recipients that will receive a copy of the
     * message.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfRecipientsType
     */
    public $CcRecipients;

    /**
     * Specifies the time at which the item was created.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $CreatedTime;

    /**
     * Specifies an array of additional properties.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfExtendedPropertyType
     */
    public $ExtendedProperties;

    /**
     * Specifies whether the item has attachments.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $HasAttachment;

    /**
     * Specifies the identifier of the item.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $Id;

    /**
     * Describes the importance of an item or the aggregated importance of all
     * items in a conversation in the current folder.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ImportanceChoicesType
     */
    public $Importance;

    /**
     * Represents the message class of an item.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ItemClassType
     */
    public $ItemClass;

    /**
     * Contains the mailbox identifier and the user’s primary Simple Mail
     * Transfer Protocol (SMTP) address.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\PreviewItemMailboxType
     */
    public $Mailbox;

    /**
     * Specifies the link to preview an item in Microsoft Outlook Web App.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $OwaLink;

    /**
     * Specifies the identifier of the parent item in a search preview.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $ParentId;

    /**
     * Specifies the first 256 characters of an item for display.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Preview;

    /**
     * Indicates whether a client can read a folder or item.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $Read;

    /**
     * Specifies the time at which an item was received.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $ReceivedTime;

    /**
     * Specifies the e-mail address of the person who sent an item.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Sender;

    /**
     * Specifies the time at which the item was sent.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $SentTime;

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

    /**
     * Specifies a value used for sorting.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $SortValue;

    /**
     * Represents the subject property of Exchange store items.
     *
     * The subject is limited to 255 characters.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Subject;

    /**
     * Specifies a list of recipients to whom the item was sent.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSmtpAddressType
     */
    public $ToRecipients;

    /**
     * Specifies a unique hash value used for de-duplication.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $UniqueHash;
}