summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FileAttachmentType.php
blob: 6dc28090fc423b02b7b89a10ea93a9c44ea6b52a (plain) (tree)



































                                                                           
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\FileAttachmentType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a file that is attached to an item in the Exchange store.
 *
 * @package php-ews\Type
 */
class FileAttachmentType extends AttachmentType
{

    /**
     * Contains the Base64-encoded contents of the file attachment.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Consider using an object that takes a file stream and does the
     * base64 conversion.
     */
    public $Content;

    /**
     * Indicates whether the file attachment is a contact picture.
     *
     * @since Exchange 2010
     *
     * @var boolean
     */
    public $IsContactPhoto;
}