summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
diff options
context:
space:
mode:
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;
+}