summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php
new file mode 100644
index 00000000..9d06bc38
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ConvertIdType.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\ConvertIdType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+use \jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to convert item and folder identifiers between supported
+ * Exchange formats.
+ *
+ * @package php-ews\Request
+ */
+class ConvertIdType extends BaseRequestType
+{
+ /**
+ * Describes the identifier format that will be returned for all the
+ * converted identifiers.
+ *
+ * The DestinationFormat is described by the IdFormatType.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\IdFormatType
+ */
+ public $DestinationFormat;
+
+ /**
+ * Contains the source identifiers to convert.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfAlternateIdsType
+ */
+ public $SourceIds;
+}