1 | <?php |
||
31 | class DocumentNumberDetails |
||
32 | { |
||
33 | /** |
||
34 | * @var DocumentDetails |
||
35 | */ |
||
36 | public $documentDetails; |
||
37 | |||
38 | /** |
||
39 | * 700 no active itinerary |
||
40 | * 701 Coupon notification |
||
41 | * 702 Active* |
||
42 | * 703 Queue placement is inhibited |
||
43 | * 704 Queue level notification |
||
44 | * 705 Queue being printed |
||
45 | * 706 Sub-queue present |
||
46 | * 707 On hold |
||
47 | * A Add |
||
48 | * AC Accrual |
||
49 | * AL Aiport control |
||
50 | * ALL Allocated |
||
51 | * AVA Available |
||
52 | * B Flown/used |
||
53 | * BD Boarded |
||
54 | * C Change |
||
55 | * CK Checked in |
||
56 | * CLO Closed |
||
57 | * D Reprint |
||
58 | * DB Deboarded |
||
59 | * DN Denied boarding |
||
60 | * E Exchanged/reissued |
||
61 | * F Critical free text |
||
62 | * G Non air segment |
||
63 | * I Original Issue (Open for Use) |
||
64 | * IF Information only |
||
65 | * INU In use |
||
66 | * IO Irregular operations |
||
67 | * K Confirmed, effective, working, firm, etc |
||
68 | * LIM Limitations on use |
||
69 | * NAV Not available |
||
70 | * NC Not checked in |
||
71 | * NS Infant, no seat |
||
72 | * OF Offloaded |
||
73 | * OK Confirmed |
||
74 | * OLD Replaced item |
||
75 | * OPE Open |
||
76 | * P Provisional, draft proposed subject to change, etc |
||
77 | * PAV Partial Availability - Specified sub-elements only |
||
78 | * PE Print Exchange |
||
79 | * PR Printed |
||
80 | * PRF Preferred |
||
81 | * PRP Proposed/Intended Allocation |
||
82 | * R Request |
||
83 | * RD Redemption |
||
84 | * REP Replacement |
||
85 | * REV Revised |
||
86 | * RF Refunded |
||
87 | * RQ Requested |
||
88 | * S Suspended |
||
89 | * SA Space Available |
||
90 | * SB Standby |
||
91 | * SRV Serviceable |
||
92 | * T Ticketed |
||
93 | * UNS Unserviceable |
||
94 | * V Void |
||
95 | * WL Waitlisted |
||
96 | * X Cancel |
||
97 | * |
||
98 | * @var string|int |
||
99 | */ |
||
100 | public $status; |
||
101 | |||
102 | /** |
||
103 | * DocumentNumberDetails constructor. |
||
104 | * |
||
105 | * @param string $ticketNumber |
||
106 | */ |
||
107 | 4 | public function __construct($ticketNumber) |
|
111 | } |
||
112 |