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