| 1 | <?php |
||
| 10 | class ODataNavigationPropertyInfo |
||
| 11 | { |
||
| 12 | public $resourceProperty; |
||
| 13 | public $expanded; |
||
| 14 | public $value; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Constructs a new instance of ODataNavigationPropertyInfo. |
||
| 18 | * |
||
| 19 | * @param ResourceProperty &$resourceProperty Metadata of the |
||
| 20 | * navigation property |
||
| 21 | * @param bool $expanded Whether the navigation is expanded |
||
| 22 | * or not |
||
| 23 | */ |
||
| 24 | public function __construct(ResourceProperty & $resourceProperty, $expanded) |
||
| 30 | } |
||
| 31 |