1 | <?php |
||
18 | class Resource extends RestValue |
||
19 | { |
||
20 | /** |
||
21 | * Resource name. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | public $name; |
||
26 | |||
27 | /** |
||
28 | * Media Type of the resource. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | public $mediaType; |
||
33 | |||
34 | /** |
||
35 | * href of the resource. |
||
36 | * |
||
37 | * @var string |
||
38 | */ |
||
39 | public $href; |
||
40 | |||
41 | /** |
||
42 | * Resource constructor. |
||
43 | * @param $name |
||
44 | * @param $mediaType |
||
45 | * @param $href |
||
46 | */ |
||
47 | public function __construct($name, $mediaType, $href) |
||
53 | } |
||
54 |