summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php
blob: 74c2cd8e6e6aec64f61ac2b4e26ce1d007b92b83 (plain) (tree)



















































                                                                      
<?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;
}