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





































































































                                                                               
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\NonIndexableItemDetailType.
 */

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines detail information about an item that cannot be indexed.
 *
 * @package php-ews\Type
 */
class NonIndexableItemDetailType extends Type
{
    /**
     * Contains the unique identifier and change key of an item in the Exchange
     * store.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $ItemId;

    /**
     * Internal use only.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ErrorCode;

    /**
     * Describes the error that is returned in information about an item that
     * cannot be indexed.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ErrorDescription;

    /**
     * Indicates whether the item is partially indexed.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $IsPartiallyIndexed;

    /**
     * Indicates whether a previous attempt to index the item was unsuccessful.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $IsPermanentFailure;

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

    /**
     * Represents the number of attempts that have been made to index the item.
     *
     * @since Exchange 2013
     *
     * @var integer
     */
    public $AttemptCount;

    /**
     * Contains the time and date at which the last attempt to index the item
     * was made.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $LastAttemptTime;

    /**
     * Specifies additional information about the hold status of a mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $AdditionalInfo;
}