1 | <?php |
||
41 | class PricingOption |
||
42 | { |
||
43 | /** |
||
44 | * @var PricingOptionKey |
||
45 | */ |
||
46 | public $pricingOptionKey; |
||
47 | |||
48 | /** |
||
49 | * @var OptionDetail |
||
50 | */ |
||
51 | public $optionDetail; |
||
52 | |||
53 | /** |
||
54 | * @var CarrierInformation |
||
55 | */ |
||
56 | public $carrierInformation; |
||
57 | |||
58 | /** |
||
59 | * @var Currency |
||
60 | */ |
||
61 | public $currency; |
||
62 | |||
63 | /** |
||
64 | * @var DateInformation |
||
65 | */ |
||
66 | public $dateInformation; |
||
67 | |||
68 | /** |
||
69 | * @var FrequentFlyerInformation |
||
70 | */ |
||
71 | public $frequentFlyerInformation; |
||
72 | |||
73 | /** |
||
74 | * @var FormOfPaymentInformation |
||
75 | */ |
||
76 | public $formOfPaymentInformation; |
||
77 | |||
78 | /** |
||
79 | * @var LocationInformation |
||
80 | */ |
||
81 | public $locationInformation; |
||
82 | |||
83 | /** |
||
84 | * @var TicketInformation |
||
85 | */ |
||
86 | public $ticketInformation; |
||
87 | |||
88 | /** |
||
89 | * @var PaxSegTstReference |
||
90 | */ |
||
91 | public $paxSegTstReference; |
||
92 | |||
93 | /** |
||
94 | * PricingOptionGroup constructor. |
||
95 | * |
||
96 | * @param string $key |
||
97 | */ |
||
98 | public function __construct($key) |
||
102 | } |
||
103 |