1 | <?php |
||
10 | final class InquiryResponse extends AbstractResponse |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $status; |
||
16 | |||
17 | /** |
||
18 | * @var string|null |
||
19 | */ |
||
20 | private $discount = null; |
||
21 | |||
22 | public function __construct($data) |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getStatus() |
||
40 | |||
41 | /** |
||
42 | * @return string|null |
||
43 | */ |
||
44 | public function getDiscount() |
||
48 | } |
||
49 |