1 | <?php |
||
13 | abstract class EwsMultipleOperandBooleanExpressionType extends EwsSearchExpressionType |
||
14 | { |
||
15 | /** |
||
16 | * The SearchExpression |
||
17 | * Meta informations extracted from the WSDL |
||
18 | * - maxOccurs: unbounded |
||
19 | * - minOccurs: 1 |
||
20 | * - ref: t:SearchExpression |
||
21 | * @var \Ews\StructType\EwsSearchExpressionType[] |
||
22 | */ |
||
23 | public $SearchExpression; |
||
24 | /** |
||
25 | * Constructor method for MultipleOperandBooleanExpressionType |
||
26 | * @uses EwsMultipleOperandBooleanExpressionType::setSearchExpression() |
||
27 | * @param \Ews\StructType\EwsSearchExpressionType[] $searchExpression |
||
28 | */ |
||
29 | public function __construct(array $searchExpression = array()) |
||
34 | /** |
||
35 | * Get SearchExpression value |
||
36 | * @return \Ews\StructType\EwsSearchExpressionType[] |
||
37 | */ |
||
38 | public function getSearchExpression() |
||
42 | /** |
||
43 | * Set SearchExpression value |
||
44 | * @throws \InvalidArgumentException |
||
45 | * @param \Ews\StructType\EwsSearchExpressionType[] $searchExpression |
||
46 | * @return \Ews\StructType\EwsMultipleOperandBooleanExpressionType |
||
47 | */ |
||
48 | public function setSearchExpression(array $searchExpression = array()) |
||
59 | /** |
||
60 | * Add item to SearchExpression value |
||
61 | * @throws \InvalidArgumentException |
||
62 | * @param \Ews\StructType\EwsSearchExpressionType $item |
||
63 | * @return \Ews\StructType\EwsMultipleOperandBooleanExpressionType |
||
64 | */ |
||
65 | public function addToSearchExpression(\Ews\StructType\EwsSearchExpressionType $item) |
||
74 | /** |
||
75 | * Method called when an object has been exported with var_export() functions |
||
76 | * It allows to return an object instantiated with the values |
||
77 | * @see AbstractStructBase::__set_state() |
||
78 | * @uses AbstractStructBase::__set_state() |
||
79 | * @param array $array the exported values |
||
80 | * @return \Ews\StructType\EwsMultipleOperandBooleanExpressionType |
||
81 | */ |
||
82 | public static function __set_state(array $array) |
||
86 | /** |
||
87 | * Method returning the class name |
||
88 | * @return string __CLASS__ |
||
89 | */ |
||
90 | public function __toString() |
||
94 | } |
||
95 |