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

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines the value of a BodyContentAttributedValue element.
 *
 * @package php-ews\Type
 */
class BodyContentType extends Type
{
    /**
     * Identifies how the body text is formatted.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\BodyTypeResponseType
     */
    public $BodyType;

    /**
     * Contains the value of the body content.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Value;
}