summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php
new file mode 100644
index 00000000..f99da563
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetImItemsType.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\GetImItemsType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to get information about the specified instant messaging
+ * groups and instant messaging contact personas.
+ *
+ * @package php-ews\Request
+ */
+class GetImItemsType extends BaseRequestType
+{
+ /**
+ * Contains an array of contact item identifiers.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
+ */
+ public $ContactIds;
+
+ /**
+ * Identifies an array of instant messaging group identifiers.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
+ */
+ public $GroupIds;
+
+ /**
+ * Contains the extended properties used for the Unified Contact Store
+ * operations.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfExtendedFieldURIs
+ */
+ public $ExtendedProperties;
+}