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