| 1 | <?php |
||
| 19 | final class InquiryResponse extends AbstractResponse |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $status; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string|null |
||
| 28 | */ |
||
| 29 | private $discount = null; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function __construct($parameters) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getStatus() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return string|null |
||
| 55 | */ |
||
| 56 | public function getDiscount() |
||
| 60 | } |
||
| 61 |