1 | <?php |
||
13 | class EwsFieldOrderType extends AbstractStructBase |
||
14 | { |
||
15 | /** |
||
16 | * The Order |
||
17 | * Meta informations extracted from the WSDL |
||
18 | * - use: required |
||
19 | * @var string |
||
20 | */ |
||
21 | public $Order; |
||
22 | /** |
||
23 | * The FieldURI |
||
24 | * @var \Ews\StructType\EwsPathToUnindexedFieldType |
||
25 | */ |
||
26 | public $FieldURI; |
||
27 | /** |
||
28 | * The IndexedFieldURI |
||
29 | * @var \Ews\StructType\EwsPathToIndexedFieldType |
||
30 | */ |
||
31 | public $IndexedFieldURI; |
||
32 | /** |
||
33 | * The ExtendedFieldURI |
||
34 | * @var \Ews\StructType\EwsPathToExtendedFieldType |
||
35 | */ |
||
36 | public $ExtendedFieldURI; |
||
37 | /** |
||
38 | * Constructor method for FieldOrderType |
||
39 | * @uses EwsFieldOrderType::setOrder() |
||
40 | * @uses EwsFieldOrderType::setFieldURI() |
||
41 | * @uses EwsFieldOrderType::setIndexedFieldURI() |
||
42 | * @uses EwsFieldOrderType::setExtendedFieldURI() |
||
43 | * @param string $order |
||
44 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
45 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
46 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
47 | */ |
||
48 | public function __construct($order = null, \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null, \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null, \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
56 | /** |
||
57 | * Get Order value |
||
58 | * @return string |
||
59 | */ |
||
60 | public function getOrder() |
||
64 | /** |
||
65 | * Set Order value |
||
66 | * @uses \Ews\EnumType\EwsSortDirectionType::valueIsValid() |
||
67 | * @uses \Ews\EnumType\EwsSortDirectionType::getValidValues() |
||
68 | * @throws \InvalidArgumentException |
||
69 | * @param string $order |
||
70 | * @return \Ews\StructType\EwsFieldOrderType |
||
71 | */ |
||
72 | public function setOrder($order = null) |
||
81 | /** |
||
82 | * Get FieldURI value |
||
83 | * @return \Ews\StructType\EwsPathToUnindexedFieldType|null |
||
84 | */ |
||
85 | public function getFieldURI() |
||
89 | /** |
||
90 | * Set FieldURI value |
||
91 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
92 | * @return \Ews\StructType\EwsFieldOrderType |
||
93 | */ |
||
94 | public function setFieldURI(\Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null) |
||
99 | /** |
||
100 | * Get IndexedFieldURI value |
||
101 | * @return \Ews\StructType\EwsPathToIndexedFieldType|null |
||
102 | */ |
||
103 | public function getIndexedFieldURI() |
||
107 | /** |
||
108 | * Set IndexedFieldURI value |
||
109 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
110 | * @return \Ews\StructType\EwsFieldOrderType |
||
111 | */ |
||
112 | public function setIndexedFieldURI(\Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null) |
||
117 | /** |
||
118 | * Get ExtendedFieldURI value |
||
119 | * @return \Ews\StructType\EwsPathToExtendedFieldType|null |
||
120 | */ |
||
121 | public function getExtendedFieldURI() |
||
125 | /** |
||
126 | * Set ExtendedFieldURI value |
||
127 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
128 | * @return \Ews\StructType\EwsFieldOrderType |
||
129 | */ |
||
130 | public function setExtendedFieldURI(\Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
135 | /** |
||
136 | * Method called when an object has been exported with var_export() functions |
||
137 | * It allows to return an object instantiated with the values |
||
138 | * @see AbstractStructBase::__set_state() |
||
139 | * @uses AbstractStructBase::__set_state() |
||
140 | * @param array $array the exported values |
||
141 | * @return \Ews\StructType\EwsFieldOrderType |
||
142 | */ |
||
143 | public static function __set_state(array $array) |
||
147 | /** |
||
148 | * Method returning the class name |
||
149 | * @return string __CLASS__ |
||
150 | */ |
||
151 | public function __toString() |
||
155 | } |
||
156 |