1 | <?php |
||
11 | class Response extends AbstractResponse |
||
12 | { |
||
13 | /** |
||
14 | * The articles from the response. |
||
15 | * |
||
16 | * @var array |
||
17 | * |
||
18 | * @JMS\Type("array<Speicher210\Monsum\Api\Model\Article>") |
||
19 | * @JMS\SerializedName("ARTICLES") |
||
20 | */ |
||
21 | protected $articles = []; |
||
22 | |||
23 | /** |
||
24 | * Get the articles from the response. |
||
25 | * |
||
26 | * @return \Speicher210\Monsum\Api\Model\Article[] |
||
27 | */ |
||
28 | 15 | public function getArticles() |
|
32 | } |
||
33 |