summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/MailTips.php
blob: 3c4096ba1eda76e3de7a2449f3ba7f06a988bfad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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;
}