1 | <?php |
||
13 | class EwsExistsType extends EwsSearchExpressionType |
||
14 | { |
||
15 | /** |
||
16 | * The FieldURI |
||
17 | * @var \Ews\StructType\EwsPathToUnindexedFieldType |
||
18 | */ |
||
19 | public $FieldURI; |
||
20 | /** |
||
21 | * The IndexedFieldURI |
||
22 | * @var \Ews\StructType\EwsPathToIndexedFieldType |
||
23 | */ |
||
24 | public $IndexedFieldURI; |
||
25 | /** |
||
26 | * The ExtendedFieldURI |
||
27 | * @var \Ews\StructType\EwsPathToExtendedFieldType |
||
28 | */ |
||
29 | public $ExtendedFieldURI; |
||
30 | /** |
||
31 | * Constructor method for ExistsType |
||
32 | * @uses EwsExistsType::setFieldURI() |
||
33 | * @uses EwsExistsType::setIndexedFieldURI() |
||
34 | * @uses EwsExistsType::setExtendedFieldURI() |
||
35 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
36 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
37 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
38 | */ |
||
39 | public function __construct(\Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null, \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null, \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
46 | /** |
||
47 | * Get FieldURI value |
||
48 | * @return \Ews\StructType\EwsPathToUnindexedFieldType|null |
||
49 | */ |
||
50 | public function getFieldURI() |
||
54 | /** |
||
55 | * Set FieldURI value |
||
56 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
57 | * @return \Ews\StructType\EwsExistsType |
||
58 | */ |
||
59 | public function setFieldURI(\Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null) |
||
64 | /** |
||
65 | * Get IndexedFieldURI value |
||
66 | * @return \Ews\StructType\EwsPathToIndexedFieldType|null |
||
67 | */ |
||
68 | public function getIndexedFieldURI() |
||
72 | /** |
||
73 | * Set IndexedFieldURI value |
||
74 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
75 | * @return \Ews\StructType\EwsExistsType |
||
76 | */ |
||
77 | public function setIndexedFieldURI(\Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null) |
||
82 | /** |
||
83 | * Get ExtendedFieldURI value |
||
84 | * @return \Ews\StructType\EwsPathToExtendedFieldType|null |
||
85 | */ |
||
86 | public function getExtendedFieldURI() |
||
90 | /** |
||
91 | * Set ExtendedFieldURI value |
||
92 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
93 | * @return \Ews\StructType\EwsExistsType |
||
94 | */ |
||
95 | public function setExtendedFieldURI(\Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
100 | /** |
||
101 | * Method called when an object has been exported with var_export() functions |
||
102 | * It allows to return an object instantiated with the values |
||
103 | * @see AbstractStructBase::__set_state() |
||
104 | * @uses AbstractStructBase::__set_state() |
||
105 | * @param array $array the exported values |
||
106 | * @return \Ews\StructType\EwsExistsType |
||
107 | */ |
||
108 | public static function __set_state(array $array) |
||
112 | /** |
||
113 | * Method returning the class name |
||
114 | * @return string __CLASS__ |
||
115 | */ |
||
116 | public function __toString() |
||
120 | } |
||
121 |