summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php
new file mode 100644
index 00000000..75a96e0a
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsFolderType.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ContactsFolderType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a contacts folder that is contained in a mailbox.
+ *
+ * @package php-ews\Type
+ */
+class ContactsFolderType extends BaseFolderType
+{
+ /**
+ * Contains all the configured permissions for a folder.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var \jamesiarmes\PhpEws\Type\PermissionSetType
+ */
+ public $PermissionSet;
+
+ /**
+ * Indicates the permissions that the user has for the contact data that is
+ * being shared.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\PermissionReadAccessType
+ */
+ public $SharingEffectiveRights;
+}