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

namespace jamesiarmes\PhpEws\ArrayType;

use \jamesiarmes\PhpEws\ArrayType;

/**
 * Defines how items are sorted in a FindItem or FindConversation request.
 *
 * @package php-ews\Array
 */
class NonEmptyArrayOfFieldOrdersType extends ArrayType
{
    /**
     * Represents a single field by which to sort results and indicates the
     * direction for the sort.
     *
     * One or more of these elements may be included.
     *
     * FieldOrder elements are applied in the order specified for sorting.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\FieldOrderType[]
     */
    public $FieldOrder = array();
}