1 | <?php |
||
17 | class SegmentInfo |
||
18 | { |
||
19 | /** |
||
20 | * @var int identifier |
||
21 | */ |
||
22 | protected $ID; |
||
23 | |||
24 | /** |
||
25 | * @var string name |
||
26 | */ |
||
27 | protected $Name; |
||
28 | |||
29 | /** |
||
30 | * @var string type |
||
31 | */ |
||
32 | protected $Type; |
||
33 | |||
34 | /** |
||
35 | * |
||
36 | * @var strinf description |
||
37 | */ |
||
38 | protected $Description; |
||
39 | |||
40 | /** |
||
41 | * Gets the segment's identifier |
||
42 | * |
||
43 | * @return int identifier |
||
44 | */ |
||
45 | 1 | public function getId() |
|
49 | |||
50 | /** |
||
51 | * Gets the segment's name |
||
52 | * |
||
53 | * @return string name |
||
54 | */ |
||
55 | 1 | public function getName() |
|
59 | |||
60 | /** |
||
61 | * Gets the segment's type |
||
62 | * |
||
63 | * @return string type |
||
64 | */ |
||
65 | 1 | public function getType() |
|
69 | |||
70 | /** |
||
71 | * Gets the segment's description |
||
72 | * |
||
73 | * @return string description |
||
74 | */ |
||
75 | 1 | public function getDescription() |
|
79 | } |
||
80 |