1 | <?php |
||
7 | class ViewMode extends Entity |
||
8 | { |
||
9 | /** |
||
10 | * @param array $array |
||
11 | */ |
||
12 | public function __construct(array $array = []) |
||
16 | |||
17 | /** |
||
18 | * Sets the 'id' parameter. |
||
19 | * |
||
20 | * @param string $id |
||
21 | * |
||
22 | * @throws \Acquia\LiftClient\Exception\LiftSdkException |
||
23 | * |
||
24 | * @return \Acquia\LiftClient\Entity\ViewMode |
||
25 | */ |
||
26 | public function setId($id) |
||
35 | |||
36 | /** |
||
37 | * Gets the 'id' parameter. |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getId() |
||
45 | |||
46 | /** |
||
47 | * Gets the 'id' parameter. |
||
48 | * |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getLabel() |
||
55 | |||
56 | /** |
||
57 | * Gets the 'url' parameter. |
||
58 | * |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getUrl() |
||
65 | |||
66 | /** |
||
67 | * Gets the 'html' parameter. |
||
68 | * |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getHtml() |
||
75 | |||
76 | /** |
||
77 | * Gets the 'preview_image' parameter. |
||
78 | * |
||
79 | * @return string |
||
80 | */ |
||
81 | public function getPreviewImage() |
||
85 | } |
||
86 |