1 | <?php |
||
31 | class SelectionDetails |
||
32 | { |
||
33 | const OPTION_BEST_PRICER = "FXZ"; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | public $option; |
||
39 | |||
40 | /** |
||
41 | * 0 Integrated Transaction (Rebook, Best buy, etc.) |
||
42 | * 1 Neutral availability |
||
43 | * 2 Airline own biased availability |
||
44 | * 3 Link Access availability |
||
45 | * 4 Group availability |
||
46 | * 5 Dual city pair |
||
47 | * 6 Upper part of display |
||
48 | * 7 Other Airline biased availability |
||
49 | * 700 Alliance availability |
||
50 | * |
||
51 | * @var int |
||
52 | */ |
||
53 | public $optionInformation; |
||
54 | |||
55 | /** |
||
56 | * SelectionDetails constructor. |
||
57 | * |
||
58 | * @param int $optionInformation |
||
59 | * @param string $option |
||
60 | */ |
||
61 | 8 | public function __construct($optionInformation, $option = self::OPTION_BEST_PRICER) |
|
66 | } |
||
67 |