1 | <?php |
||
17 | class ListInfo |
||
18 | { |
||
19 | /** |
||
20 | * |
||
21 | */ |
||
22 | public static $datetime_format = 'Y-m-d\TH:i:s.u'; |
||
23 | |||
24 | /** |
||
25 | * @var integer |
||
26 | */ |
||
27 | protected $ID; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $Name; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $Description; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | protected $CreatedDate; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | protected $ModifiedDate; |
||
48 | |||
49 | /** |
||
50 | * @var string |
||
51 | */ |
||
52 | protected $Type; |
||
53 | |||
54 | /** |
||
55 | * @var string |
||
56 | */ |
||
57 | protected $Tag; |
||
58 | |||
59 | /** |
||
60 | * @param integer $id |
||
61 | * @param string $name |
||
62 | * @param string $description |
||
63 | * @param string $type |
||
64 | * @param string $tag |
||
65 | */ |
||
66 | 2 | public function __construct($id, $name = null, $description = null, $type = null, $tag = null) |
|
77 | |||
78 | /** |
||
79 | * @return integer |
||
80 | */ |
||
81 | 1 | public function getId() |
|
85 | |||
86 | /** |
||
87 | * @return string|null |
||
88 | */ |
||
89 | 1 | public function getName() |
|
93 | |||
94 | /** |
||
95 | * @return string|null |
||
96 | */ |
||
97 | 1 | public function getDescription() |
|
101 | |||
102 | /** |
||
103 | * @return \DateTimeInterface |
||
104 | */ |
||
105 | 1 | public function getCreatedDate() |
|
109 | |||
110 | /** |
||
111 | * @return \DateTimeInterface |
||
112 | */ |
||
113 | 2 | public function getModifiedDate() |
|
121 | |||
122 | /** |
||
123 | * @return string|null |
||
124 | */ |
||
125 | 1 | public function getType() |
|
129 | |||
130 | /** |
||
131 | * @return string|null |
||
132 | */ |
||
133 | 1 | public function getTag() |
|
137 | } |
||
138 |