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

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents an event in which an item or folder is copied.
 *
 * @package php-ews\Type
 */
class MovedCopiedEventType extends BaseObjectChangedEventType
{
    /**
     * Represents the folder identifier of the original folder before it was
     * copied.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\FolderIdType
     */
    public $OldFolderId;

    /**
     * Contains the unique identifier of the original item before it was copied.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $OldItemId;

    /**
     * Contains the identifier of the original parent folder of an item or
     * folder that was copied.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\FolderIdType
     */
    public $OldParentFolderId;
}