summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php
blob: a36a99b1618a831f44278c63bac9bc53911a7228 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\DeleteItemType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to delete an item from a mailbox in the Exchange store.
 *
 * @package php-ews\Request
 */
class DeleteItemType extends BaseRequestType
{
    /**
     * Describes whether a task instance or a task master is deleted by a
     * DeleteItem operation.
     *
     * This attribute is required when tasks are deleted.
     *
     * This attribute is optional when non-task items are deleted.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\AffectedTaskOccurrencesType
     */
    public $AffectedTaskOccurrences;

    /**
     * Describes how an item is deleted.
     *
     * This attribute is required.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\DisposalType
     */
    public $DeleteType;

    /**
     * Contains an array of items, occurrence items, and recurring master items
     * to delete from a mailbox in the Exchange store.
     *
     * The DeleteItem operation can be performed on any item type.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
     */
    public $ItemIds;

    /**
     * Describes whether a calendar item deletion is communicated to attendees.
     *
     * This attribute is required when calendar items are deleted.
     *
     * This attribute is optional if non-calendar items are deleted.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\CalendarItemCreateOrDeleteOperationType
     */
    public $SendMeetingCancellations;

    /**
     * Indicates whether read receipts for the deleted item are suppressed.
     *
     * A value of true indicates that the read receipts are suppressed. A value
     * of false indicates that the read receipts are sent to the sender.
     *
     * This attribute is optional.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $SuppressReadReceipts;
}