summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php
new file mode 100644
index 00000000..b640e2b8
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FolderType.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\FolderType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines a folder to create, get, find, synchronize, or update.
+ *
+ * @package php-ews\Type
+ */
+class FolderType extends BaseFolderType
+{
+ /**
+ * Contains all the configured permissions for a folder.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var \jamesiarmes\PhpEws\Type\PermissionSetType
+ */
+ public $PermissionSet;
+
+ /**
+ * Represents the count of unread items within a given folder.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $UnreadCount;
+}