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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines the source folder Id and an array of item Ids for the associated
 * archive item.
 *
 * @package php-ews\Request
 */
class ArchiveItemType extends BaseRequestType
{
    /**
     * Specifies the Id of the source folder for the archive item.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
     */
    public $ArchiveSourceFolderId;

    /**
     * Contains the unique identities of items to archive.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
     */
    public $ItemIds;
}