summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-05 15:08:52 +0200
committerSimon Rettberg2018-04-05 15:08:52 +0200
commitb409fbb72591b43df7431e83e30d6c00ea633f21 (patch)
treee16963094d5189c24220bf8331a054e8be33325b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
parent[locationinfo] Fix color of seat counter not updating properly (diff)
downloadslx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.gz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.xz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.zip
[locationinfo] Add exchange backend
Closes #3170
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
new file mode 100644
index 00000000..a3d7fde2
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ContactsViewType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines a search for contact items based on alphabetical display names.
+ *
+ * @package php-ews\Type
+ */
+class ContactsViewType extends BasePagingType
+{
+ /**
+ * Defines the last name in the contacts list to return in the response.
+ *
+ * If the FinalName attribute is omitted, the response will contain all
+ * subsequent contacts in the specified sort order. If the specified final
+ * name is not in the contacts list, the next alphabetical name as defined
+ * by the cultural context will be excluded.
+ *
+ * For example, if FinalName="Name", but Name is not in the contacts list,
+ * contacts that have display names of Name1 or NAME will not be included.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $FinalName;
+
+ /**
+ * Defines the first name in the contacts list to return in the response.
+ *
+ * If the specified initial name is not in the contacts list, the next
+ * alphabetical name as defined by the cultural context will be returned,
+ * except if the next name comes after FinalName.
+ *
+ * If the InitialName attribute is omitted, the response will contain a list
+ * of contacts that starts with the first name in the contact list.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $InitialName;
+}