summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php
new file mode 100644
index 00000000..2477c7ae
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\UserPhotoTypeType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the type of a user photo.
+ *
+ * @package php-ews\Enumeration
+ */
+class UserPhotoTypeType extends Enumeration
+{
+ /**
+ * Identifies a user photo as a profile header photo.
+ *
+ * @since Exchange 2016
+ *
+ * @var string
+ */
+ const PROFILE_HEADER_PHOTO = 'ProfileHeaderPhoto';
+
+ /**
+ * Identifies a user photo as the user's primary photo.
+ *
+ * @since Exchange 2016
+ *
+ * @var string
+ */
+ const USER_PHOTO = 'UserPhoto';
+}