summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/UserMailboxType.php
blob: 918774d62f9804dd30dd0d02bf28bdeafbc49603 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\UserMailboxType.
 */

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Represents a user mailbox.
 *
 * @package php-ews\Type
 */
class UserMailboxType extends Type
{
    /**
     * The text value of the Id attribute is the identifier of the mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Id;

    /**
     * Whether the mailbox is an archive mailbox.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $IsArchive;
}