1 | <?php |
||
13 | class EwsFieldURIOrConstantType extends AbstractStructBase |
||
14 | { |
||
15 | /** |
||
16 | * The Constant |
||
17 | * @var \Ews\StructType\EwsConstantValueType |
||
18 | */ |
||
19 | public $Constant; |
||
20 | /** |
||
21 | * The FieldURI |
||
22 | * @var \Ews\StructType\EwsPathToUnindexedFieldType |
||
23 | */ |
||
24 | public $FieldURI; |
||
25 | /** |
||
26 | * The IndexedFieldURI |
||
27 | * @var \Ews\StructType\EwsPathToIndexedFieldType |
||
28 | */ |
||
29 | public $IndexedFieldURI; |
||
30 | /** |
||
31 | * The ExtendedFieldURI |
||
32 | * @var \Ews\StructType\EwsPathToExtendedFieldType |
||
33 | */ |
||
34 | public $ExtendedFieldURI; |
||
35 | /** |
||
36 | * Constructor method for FieldURIOrConstantType |
||
37 | * @uses EwsFieldURIOrConstantType::setConstant() |
||
38 | * @uses EwsFieldURIOrConstantType::setFieldURI() |
||
39 | * @uses EwsFieldURIOrConstantType::setIndexedFieldURI() |
||
40 | * @uses EwsFieldURIOrConstantType::setExtendedFieldURI() |
||
41 | * @param \Ews\StructType\EwsConstantValueType $constant |
||
42 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
43 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
44 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
45 | */ |
||
46 | public function __construct(\Ews\StructType\EwsConstantValueType $constant = null, \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null, \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null, \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
54 | /** |
||
55 | * Get Constant value |
||
56 | * @return \Ews\StructType\EwsConstantValueType|null |
||
57 | */ |
||
58 | public function getConstant() |
||
62 | /** |
||
63 | * Set Constant value |
||
64 | * @param \Ews\StructType\EwsConstantValueType $constant |
||
65 | * @return \Ews\StructType\EwsFieldURIOrConstantType |
||
66 | */ |
||
67 | public function setConstant(\Ews\StructType\EwsConstantValueType $constant = null) |
||
72 | /** |
||
73 | * Get FieldURI value |
||
74 | * @return \Ews\StructType\EwsPathToUnindexedFieldType|null |
||
75 | */ |
||
76 | public function getFieldURI() |
||
80 | /** |
||
81 | * Set FieldURI value |
||
82 | * @param \Ews\StructType\EwsPathToUnindexedFieldType $fieldURI |
||
83 | * @return \Ews\StructType\EwsFieldURIOrConstantType |
||
84 | */ |
||
85 | public function setFieldURI(\Ews\StructType\EwsPathToUnindexedFieldType $fieldURI = null) |
||
90 | /** |
||
91 | * Get IndexedFieldURI value |
||
92 | * @return \Ews\StructType\EwsPathToIndexedFieldType|null |
||
93 | */ |
||
94 | public function getIndexedFieldURI() |
||
98 | /** |
||
99 | * Set IndexedFieldURI value |
||
100 | * @param \Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI |
||
101 | * @return \Ews\StructType\EwsFieldURIOrConstantType |
||
102 | */ |
||
103 | public function setIndexedFieldURI(\Ews\StructType\EwsPathToIndexedFieldType $indexedFieldURI = null) |
||
108 | /** |
||
109 | * Get ExtendedFieldURI value |
||
110 | * @return \Ews\StructType\EwsPathToExtendedFieldType|null |
||
111 | */ |
||
112 | public function getExtendedFieldURI() |
||
116 | /** |
||
117 | * Set ExtendedFieldURI value |
||
118 | * @param \Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI |
||
119 | * @return \Ews\StructType\EwsFieldURIOrConstantType |
||
120 | */ |
||
121 | public function setExtendedFieldURI(\Ews\StructType\EwsPathToExtendedFieldType $extendedFieldURI = null) |
||
126 | /** |
||
127 | * Method called when an object has been exported with var_export() functions |
||
128 | * It allows to return an object instantiated with the values |
||
129 | * @see AbstractStructBase::__set_state() |
||
130 | * @uses AbstractStructBase::__set_state() |
||
131 | * @param array $array the exported values |
||
132 | * @return \Ews\StructType\EwsFieldURIOrConstantType |
||
133 | */ |
||
134 | public static function __set_state(array $array) |
||
138 | /** |
||
139 | * Method returning the class name |
||
140 | * @return string __CLASS__ |
||
141 | */ |
||
142 | public function __toString() |
||
146 | } |
||
147 |