summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-usb-lock-off.tar.gz
slx-admin-usb-lock-off.tar.xz
slx-admin-usb-lock-off.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php')
-rwxr-xr-xmodules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php113
1 files changed, 113 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php
new file mode 100755
index 00000000..d96a993b
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindConversationType.php
@@ -0,0 +1,113 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\FindConversationType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to find conversations in a mailbox.
+ *
+ * @package php-ews\Request
+ */
+class FindConversationType extends BaseRequestType
+{
+ /**
+ * Identifies the property set to return in a FindConversation operation
+ * response.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\ConversationShape
+ */
+ public $ConversationShape;
+
+ /**
+ * Describes how paged conversation information is returned.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var \jamesiarmes\PhpEws\Type\IndexedPageViewType
+ */
+ public $IndexedPageItemView;
+
+ /**
+ * Specifies whether a search or fetch for a conversation should span either
+ * the primary mailbox, archive mailbox, or both the primary and archive
+ * mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\MailboxSearchLocationType
+ */
+ public $MailboxScope;
+
+ /**
+ * Identifies the folder to search for conversations.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
+ */
+ public $ParentFolderId;
+
+ /**
+ * Specifies a mailbox query string based on Advanced Query Syntax (AQS).
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\QueryStringType
+ */
+ public $QueryString;
+
+ /**
+ * Specifies the condition that is used to identify the end of a search, the
+ * starting index of a search, the maximum entries to return, and the search
+ * directions for a FindItem or FindConversation search.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\SeekToConditionPageViewType
+ */
+ public $SeekToConditionPageItemView;
+
+ /**
+ * Defines how items are sorted in a FindConversation Operation request.
+ *
+ * The conversation:LastDeliveryTime property is the only property that is
+ * supported for sorting when the FindConversation operation is used.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfFieldOrdersType
+ */
+ public $SortOrder;
+
+ /**
+ * Identifies the types of sub-tree traversal.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ConversationQueryTraversalType
+ */
+ public $Traversal;
+
+ /**
+ * Identifies the types view filters.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ViewFilterType
+ */
+ public $ViewFilter;
+}