1 | <?php |
||
31 | class CorporateId |
||
32 | { |
||
33 | const QUAL_AMADEUS_NEGO_FARES = "RN"; |
||
34 | const QUAL_UNIFARES = "RU"; |
||
35 | |||
36 | /** |
||
37 | * self::QUAL_* |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | public $corporateQualifier; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | public $identity; |
||
47 | |||
48 | /** |
||
49 | * CorporateId constructor. |
||
50 | * |
||
51 | * @param string $identity |
||
52 | * @param string $corporateQualifier self::QUAL_* |
||
53 | */ |
||
54 | public function __construct($identity, $corporateQualifier) |
||
59 | } |
||
60 |