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

namespace jamesiarmes\PhpEws\Type;

/**
 * Base class for smart responses that include new body content.
 *
 * @package php-ews\Type
 */
class SmartResponseType extends SmartResponseBaseType
{
    /**
     * Represents the actual body content of a message.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\BodyType
     */
    public $NewBodyContent;
}