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

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines the mailbox identifier and the user’s primary Simple Mail Transfer
 * Protocol (SMTP) address.
 *
 * @package php-ews\Type
 */
class PreviewItemMailboxType extends Type
{
    /**
     * Specifies an identifier for the mailbox that is accessed by discovery
     * search.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $MailboxId;

    /**
     * Specifies the primary Simple Mail Transfer Protocol (SMTP) address of the
     * mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $PrimarySmtpAddress;
}