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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to get an attachment from the Exchange store.
 *
 * @package php-ews\Request
 */
class GetAttachmentType extends BaseRequestType
{
    /**
     * Contains an array of attachment identifiers.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfRequestAttachmentIdsType
     */
    public $AttachmentIds;

    /**
     * Identifies additional extended item properties to return in a response to
     * a GetAttachment request.
     *
     * This element is optional.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\AttachmentResponseShapeType
     */
    public $AttachmentShape;
}