summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php
new file mode 100644
index 00000000..b1326aa8
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SidAndAttributesType.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\SidAndAttributesType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a single security identifier and attribute for an Active Directory
+ * directory service object group of which the account is a member.
+ *
+ * @package php-ews\Type
+ */
+class SidAndAttributesType extends Type
+{
+ /**
+ * Contains group attributes.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $Attributes;
+
+ /**
+ * Represents the security descriptor definition language (SDDL) form of a
+ * security identifier (SID) that represents the group.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $SecurityIdentifier;
+}