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

namespace jamesiarmes\PhpEws\Request;

/**
 * Represents a request to create a folder path.
 *
 * @package php-ews\Request
 */
class CreateFolderPathType extends BaseRequestType
{
    /**
     * Identifies the folder in which a new folder is created.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
     */
    public $ParentFolderId;

    /**
     * Contains an array of folders that indicate the relative folder path of
     * the folder path to be created.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfFoldersType
     */
    public $RelativeFolderPath;
}