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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to create a folder in the Exchange store.
 *
 * @package php-ews\Request
 */
class CreateFolderType extends BaseRequestType
{
    /**
     * The element that contains all the folders to create.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfFoldersType
     */
    public $Folders;

    /**
     * The element that identifies the location where the new folder is created.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
     */
    public $ParentFolderId;
}