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

namespace jamesiarmes\PhpEws\ArrayType;

use \jamesiarmes\PhpEws\ArrayType;

/**
 * Represents an array of named managed folders to add to a mailbox.
 *
 * @package php-ews\Array
 */
class NonEmptyArrayOfFolderNamesType extends ArrayType
{
    /**
     * Identifies a single managed folder to add to mailbox.
     *
     * @since Exchange 2007
     *
     * @var string[]
     */
    public $FolderName = array();
}