1 | <?php |
||
31 | class AdditionalFareDetails |
||
32 | { |
||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | public $rateClass; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | public $commodityCategory; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | public $pricingGroup; |
||
47 | |||
48 | /** |
||
49 | * @var string[] |
||
50 | */ |
||
51 | public $secondRateClass; |
||
52 | |||
53 | /** |
||
54 | * AdditionalFareDetails constructor. |
||
55 | * |
||
56 | * @param string|null $rateClass |
||
57 | * @param string|null $commodityCategory |
||
58 | */ |
||
59 | public function __construct($rateClass = null, $commodityCategory = null) |
||
64 | } |
||
65 |