1 | <?php declare(strict_types = 1); |
||
9 | class Creator |
||
10 | { |
||
11 | /** |
||
12 | * The unique ID of the creator resource. |
||
13 | * |
||
14 | * @var int |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * The first name of the creator. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | private $firstName; |
||
24 | |||
25 | /** |
||
26 | * The middle name of the creator. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | private $middleName; |
||
31 | |||
32 | /** |
||
33 | * The last name of the creator. |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | private $lastName; |
||
38 | |||
39 | /** |
||
40 | * The suffix or honorific for the creator. |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | private $suffix; |
||
45 | |||
46 | /** |
||
47 | * The full name of the creator (a space-separated concatenation of the above four fields). |
||
48 | * |
||
49 | * @var string |
||
50 | */ |
||
51 | private $fullName; |
||
52 | |||
53 | /** |
||
54 | * The date the resource was most recently modified. |
||
55 | * |
||
56 | * @var string |
||
57 | */ |
||
58 | private $modified; |
||
59 | |||
60 | /** |
||
61 | * The canonical URL identifier for this resource. |
||
62 | * |
||
63 | * @var string |
||
64 | */ |
||
65 | private $resourceURI; |
||
66 | |||
67 | /** |
||
68 | * A set of public web site URLs for the resource. |
||
69 | * |
||
70 | * @var array |
||
71 | */ |
||
72 | private $urls; |
||
73 | |||
74 | /** |
||
75 | * The representative image for this creator. |
||
76 | * |
||
77 | * @var Image |
||
78 | */ |
||
79 | private $thumbnail; |
||
80 | |||
81 | /** |
||
82 | * A resource list containing the series which feature work by this creator. |
||
83 | * |
||
84 | * @var SeriesList |
||
85 | */ |
||
86 | private $series; |
||
87 | |||
88 | /** |
||
89 | * A resource list containing the stories which feature work by this creator. |
||
90 | * |
||
91 | * @var StoryList |
||
92 | */ |
||
93 | private $stories; |
||
94 | |||
95 | /** |
||
96 | * A resource list containing the comics which feature work by this creator. |
||
97 | * |
||
98 | * @var ComicList |
||
99 | */ |
||
100 | private $comics; |
||
101 | |||
102 | /** |
||
103 | * A resource list containing the events which feature work by this creator. |
||
104 | * |
||
105 | * @var EventList |
||
106 | */ |
||
107 | private $events; |
||
108 | |||
109 | /** |
||
110 | * @return int |
||
111 | */ |
||
112 | public function getId() |
||
116 | |||
117 | /** |
||
118 | * @param int $id |
||
119 | */ |
||
120 | public function setId(int $id) |
||
124 | |||
125 | /** |
||
126 | * @return string |
||
127 | */ |
||
128 | public function getFirstName() |
||
132 | |||
133 | /** |
||
134 | * @param string $firstName |
||
135 | */ |
||
136 | public function setFirstName(string $firstName) |
||
140 | |||
141 | /** |
||
142 | * @return string |
||
143 | */ |
||
144 | public function getMiddleName() |
||
148 | |||
149 | /** |
||
150 | * @param string $middleName |
||
151 | */ |
||
152 | public function setMiddleName(string $middleName) |
||
156 | |||
157 | /** |
||
158 | * @return string |
||
159 | */ |
||
160 | public function getLastName() |
||
164 | |||
165 | /** |
||
166 | * @param string $lastName |
||
167 | */ |
||
168 | public function setLastName(string $lastName) |
||
172 | |||
173 | /** |
||
174 | * @return string |
||
175 | */ |
||
176 | public function getSuffix() |
||
180 | |||
181 | /** |
||
182 | * @param string $suffix |
||
183 | */ |
||
184 | public function setSuffix(string $suffix) |
||
188 | |||
189 | /** |
||
190 | * @return string |
||
191 | */ |
||
192 | public function getFullName() |
||
196 | |||
197 | /** |
||
198 | * @param string $fullName |
||
199 | */ |
||
200 | public function setFullName($fullName) |
||
204 | |||
205 | /** |
||
206 | * @return string |
||
207 | */ |
||
208 | public function getModified() |
||
212 | |||
213 | /** |
||
214 | * @param string $modified |
||
215 | */ |
||
216 | public function setModified(string $modified) |
||
220 | |||
221 | /** |
||
222 | * @return string |
||
223 | */ |
||
224 | public function getResourceURI() |
||
228 | |||
229 | /** |
||
230 | * @param string $resourceURI |
||
231 | */ |
||
232 | public function setResourceURI(string $resourceURI) |
||
236 | |||
237 | /** |
||
238 | * @return array |
||
239 | */ |
||
240 | public function getUrls() |
||
244 | |||
245 | /** |
||
246 | * @param array $urls |
||
247 | */ |
||
248 | public function setUrls(array $urls) |
||
252 | |||
253 | /** |
||
254 | * @return Image |
||
255 | */ |
||
256 | public function getThumbnail() |
||
260 | |||
261 | /** |
||
262 | * @param Image $thumbnail |
||
263 | */ |
||
264 | public function setThumbnail(Image $thumbnail) |
||
268 | |||
269 | /** |
||
270 | * @return SeriesList |
||
271 | */ |
||
272 | public function getSeries() |
||
276 | |||
277 | /** |
||
278 | * @param SeriesList $series |
||
279 | */ |
||
280 | public function setSeries(SeriesList $series) |
||
284 | |||
285 | /** |
||
286 | * @return StoryList |
||
287 | */ |
||
288 | public function getStories() |
||
292 | |||
293 | /** |
||
294 | * @param StoryList $stories |
||
295 | */ |
||
296 | public function setStories(StoryList $stories) |
||
300 | |||
301 | /** |
||
302 | * @return ComicList |
||
303 | */ |
||
304 | public function getComics() |
||
308 | |||
309 | /** |
||
310 | * @param ComicList $comics |
||
311 | */ |
||
312 | public function setComics(ComicList $comics) |
||
316 | |||
317 | /** |
||
318 | * @return EventList |
||
319 | */ |
||
320 | public function getEvents() |
||
324 | |||
325 | /** |
||
326 | * @param EventList $events |
||
327 | */ |
||
328 | public function setEvents(EventList $events) |
||
332 | } |
||
333 |