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

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Specifies the error message for a mailbox that failed on search.
 *
 * @package php-ews\Type
 */
class FailedSearchMailboxType extends Type
{
    /**
     * Specifies the error code of the mailbox that failed the search.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $ErrorCode;

    /**
     * Represents the reason for the validation error.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ErrorMessage;

    /**
     * Specifies whether the mailbox is an archive.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $IsArchive;

    /**
     * Contains an identifier for the mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Mailbox;
}