1 | <?php |
||
11 | class Featuretoggle extends AbstractModel implements FeaturetoggleInterface, ExtensibleDataInterface |
||
12 | { |
||
13 | protected function _construct() |
||
17 | /** |
||
18 | * Set with the name value |
||
19 | * |
||
20 | * @param $name string |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function setName($name) |
||
29 | /** |
||
30 | * Returns with the name value |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getName() |
||
38 | /** |
||
39 | * Return with the id of the warehouse |
||
40 | * |
||
41 | * @api |
||
42 | * |
||
43 | * @return int |
||
44 | */ |
||
45 | public function getFeaturetoggleId() |
||
49 | /** |
||
50 | * Set the id of the warehouse |
||
51 | * |
||
52 | * @api |
||
53 | * |
||
54 | * @param $warehouseId int |
||
55 | * |
||
56 | * @return $this |
||
57 | */ |
||
58 | public function setFeaturetoggleId($featuretoggleId) |
||
63 | |||
64 | public function setStatus($status) |
||
69 | |||
70 | public function getStatus() |
||
74 | } |
||
75 |