summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php84
1 files changed, 84 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php
new file mode 100644
index 00000000..a36a99b1
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DeleteItemType.php
@@ -0,0 +1,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;
+}