summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php120
1 files changed, 120 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php
new file mode 100644
index 00000000..3c4096ba
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php
@@ -0,0 +1,120 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\MailTips.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents values for various types of mail tips.
+ *
+ * @package php-ews\Type
+ */
+class MailTips extends Type
+{
+ /**
+ * Represents a customized mail tip message.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ public $CustomMailTip;
+
+ /**
+ * Indicates whether delivery restrictions will prevent the sender’s message
+ * from reaching the recipient.
+ *
+ * @since Exchange 2010
+ *
+ * @var boolean
+ */
+ public $DeliveryRestricted;
+
+ /**
+ * Represents the count of external members in a group.
+ *
+ * @since Exchange 2010
+ *
+ * @var integer
+ */
+ public $ExternalMemberCount;
+
+ /**
+ * Indicates whether the recipient is invalid.
+ *
+ * @since Exchange 2010
+ *
+ * @var boolean
+ */
+ public $InvalidRecipient;
+
+ /**
+ * Indicates whether the recipient's mailbox is being moderated.
+ *
+ * @since Exchange 2010
+ *
+ * @var boolean
+ */
+ public $IsModerated;
+
+ /**
+ * Indicates whether the mailbox for the recipient is full.
+ *
+ * @since Exchange 2010
+ *
+ * @var boolean
+ */
+ public $MailboxFull;
+
+ /**
+ * Represents the maximum message size the recipient can accept.
+ *
+ * @since Exchange 2010
+ *
+ * @var integer
+ */
+ public $MaxMessageSize;
+
+ /**
+ * Represents the response message and a duration time for sending the
+ * response message.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\OutOfOfficeMailTip
+ */
+ public $OutOfOffice;
+
+ /**
+ * Indicates that the mail tips in this element could not be evaluated
+ * before the server's processing timeout expired.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\MailTipTypes
+ */
+ public $PendingMailTips;
+
+ /**
+ * Represents the mailbox of the recipient.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\EmailAddressType
+ */
+ public $RecipientAddress;
+
+ /**
+ * Represents the count of all members in a group.
+ *
+ * @since Exchange 2010
+ *
+ * @var integer
+ */
+ public $TotalMemberCount;
+}