1 | <?php |
||
14 | class Asset |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $key; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $publicUrl; |
||
25 | |||
26 | /** |
||
27 | * @var \DateTimeInterface |
||
28 | */ |
||
29 | protected $createdAt; |
||
30 | |||
31 | /** |
||
32 | * @var \DateTimeInterface |
||
33 | */ |
||
34 | protected $updatedAt; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $contentType; |
||
40 | |||
41 | /** |
||
42 | * @var number |
||
43 | */ |
||
44 | protected $size; |
||
45 | |||
46 | /** |
||
47 | * @var int |
||
48 | */ |
||
49 | protected $themeId; |
||
50 | |||
51 | /** |
||
52 | * @var string |
||
53 | */ |
||
54 | protected $value; |
||
55 | |||
56 | /** |
||
57 | * @return string |
||
58 | */ |
||
59 | public function getKey() |
||
63 | |||
64 | /** |
||
65 | * @param string $key |
||
66 | * |
||
67 | * @return Asset |
||
68 | */ |
||
69 | public function setKey($key) |
||
75 | |||
76 | /** |
||
77 | * @return string |
||
78 | */ |
||
79 | public function getPublicUrl() |
||
83 | |||
84 | /** |
||
85 | * @param string $publicUrl |
||
86 | * |
||
87 | * @return Asset |
||
88 | */ |
||
89 | public function setPublicUrl($publicUrl) |
||
95 | |||
96 | /** |
||
97 | * @return \DateTimeInterface |
||
98 | */ |
||
99 | public function getCreatedAt() |
||
103 | |||
104 | /** |
||
105 | * @param \DateTimeInterface $createdAt |
||
106 | * |
||
107 | * @return Asset |
||
108 | */ |
||
109 | public function setCreatedAt($createdAt) |
||
115 | |||
116 | /** |
||
117 | * @return \DateTimeInterface |
||
118 | */ |
||
119 | public function getUpdatedAt() |
||
123 | |||
124 | /** |
||
125 | * @param \DateTimeInterface $updatedAt |
||
126 | * |
||
127 | * @return Asset |
||
128 | */ |
||
129 | public function setUpdatedAt($updatedAt) |
||
135 | |||
136 | /** |
||
137 | * @return string |
||
138 | */ |
||
139 | public function getContentType() |
||
143 | |||
144 | /** |
||
145 | * @param string $contentType |
||
146 | * |
||
147 | * @return Asset |
||
148 | */ |
||
149 | public function setContentType($contentType) |
||
155 | |||
156 | /** |
||
157 | * @return number |
||
158 | */ |
||
159 | public function getSize() |
||
163 | |||
164 | /** |
||
165 | * @param number $size |
||
166 | * |
||
167 | * @return Asset |
||
168 | */ |
||
169 | public function setSize($size) |
||
175 | |||
176 | /** |
||
177 | * @return int |
||
178 | */ |
||
179 | public function getThemeId() |
||
183 | |||
184 | /** |
||
185 | * @param int $themeId |
||
186 | * |
||
187 | * @return Asset |
||
188 | */ |
||
189 | public function setThemeId($themeId) |
||
195 | |||
196 | /** |
||
197 | * @return string |
||
198 | */ |
||
199 | public function getValue() |
||
203 | |||
204 | /** |
||
205 | * @param string $value |
||
206 | * |
||
207 | * @return Asset |
||
208 | */ |
||
209 | public function setValue($value) |
||
215 | } |