1 | <?php |
||
31 | class InclusionDetail |
||
32 | { |
||
33 | const IDENT_MANDATORY = 'M'; |
||
34 | const IDENT_NIGHT_CLASS = 'N'; |
||
35 | |||
36 | const QUAL_AIRPORT = 'A'; |
||
37 | const QUAL_CITY = 'C'; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | public $inclusionIdentifier; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | public $locationId; |
||
48 | |||
49 | /** |
||
50 | * self::QUAL_* |
||
51 | * |
||
52 | * @var string |
||
53 | */ |
||
54 | public $airportCityQualifier; |
||
55 | |||
56 | /** |
||
57 | * InclusionDetail constructor. |
||
58 | * |
||
59 | * @param string $locationId |
||
60 | * @param string inclusionIdentifier |
||
61 | */ |
||
62 | 4 | public function __construct($locationId, $inclusionIdentifier = self::IDENT_MANDATORY) |
|
67 | } |
||
68 |