summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php
new file mode 100644
index 00000000..49c2aca0
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ImItemListType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ImItemListType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines a list of instant messaging groups and instant messaging contacts.
+ *
+ * @package php-ews\Type
+ */
+class ImItemListType extends Type
+{
+ /**
+ * Represents an array of instant messaging (IM) groups.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfImGroupType
+ */
+ public $Groups;
+
+ /**
+ * Specifies an array of personas.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfPeopleType
+ */
+ public $Personas;
+}