1 | <?php |
||
10 | class ODataProperty |
||
11 | { |
||
12 | /** |
||
13 | * The name of the property. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | public $name; |
||
18 | /** |
||
19 | * The property type name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | public $typeName; |
||
24 | /** |
||
25 | * The property attribute extensions. |
||
26 | * |
||
27 | * @var XMLAttribute[] |
||
28 | */ |
||
29 | public $attributeExtensions; |
||
30 | /** |
||
31 | * The value of the property. |
||
32 | * |
||
33 | * @var string|ODataPropertyContent|ODataBagContent |
||
34 | */ |
||
35 | public $value; |
||
36 | |||
37 | /** |
||
38 | * @return bool|null |
||
39 | */ |
||
40 | public function isNull() |
||
44 | } |
||
45 |