| 1 | <?php  | 
            ||
| 31 | class Seat  | 
            ||
| 32 | { | 
            ||
| 33 | /**  | 
            ||
| 34 | * @var string  | 
            ||
| 35 | */  | 
            ||
| 36 | public $qualifier;  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | *  | 
            ||
| 40 | * NSST No smoking seat  | 
            ||
| 41 | * NSSB No smoking bulkhead seat  | 
            ||
| 42 | * NSSA No smoking aisle seat  | 
            ||
| 43 | * NSSW No smoking window seat  | 
            ||
| 44 | * SMSW Smoking window seat  | 
            ||
| 45 | * SMST Smoking seat  | 
            ||
| 46 | * SMSB Smoking bulkhead seat  | 
            ||
| 47 | * SMSA Smoking aisle seat  | 
            ||
| 48 | * SEAT Pre-reserved seat with boarding pass issued or to be issued  | 
            ||
| 49 | * RQST Seat request - include seat number preference  | 
            ||
| 50 | *  | 
            ||
| 51 | * @var string  | 
            ||
| 52 | */  | 
            ||
| 53 | public $type;  | 
            ||
| 54 | |||
| 55 | /**  | 
            ||
| 56 | * @var string  | 
            ||
| 57 | */  | 
            ||
| 58 | public $boardpoint;  | 
            ||
| 59 | |||
| 60 | /**  | 
            ||
| 61 | * @var string  | 
            ||
| 62 | */  | 
            ||
| 63 | public $offpoint;  | 
            ||
| 64 | |||
| 65 | /**  | 
            ||
| 66 | * Seat constructor.  | 
            ||
| 67 | *  | 
            ||
| 68 | * @param string $type  | 
            ||
| 69 | */  | 
            ||
| 70 | 1 | public function __construct($type)  | 
            |
| 74 | }  | 
            ||
| 75 |