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

namespace jamesiarmes\PhpEws\Type;

/**
 * Base class for search expressions with two operands.
 *
 * @package php-ews\Type
 */
abstract class TwoOperandExpressionType extends SearchExpressionType
{
    /**
     * Represents either a property or a constant value to be used when
     * comparing with another property.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\FieldURIOrConstantType
     */
    public $FieldURIOrConstant;
}