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