| 1 | <?php |
||
| 16 | class Travelleridentification |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var FrequentTravellerDetails |
||
| 20 | */ |
||
| 21 | public $frequentTravellerDetails; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var FrequentTravellerDetails[] |
||
| 25 | */ |
||
| 26 | public $otherFrequentTravellerDetails = []; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Travelleridentification constructor. |
||
| 30 | * |
||
| 31 | * @param string $carrier |
||
| 32 | * @param string $number |
||
| 33 | * @param string|null $refType |
||
| 34 | */ |
||
| 35 | public function __construct($carrier, $number, $refType = null) |
||
| 43 | } |
||
| 44 |