1 | <?php |
||
31 | class SelectionDetails |
||
32 | { |
||
33 | /** |
||
34 | * All agents of the office |
||
35 | */ |
||
36 | const SELECT_OFFICE_ALL_AGENTS = "SOF"; |
||
37 | /** |
||
38 | * All offices sharing the same IATA number |
||
39 | */ |
||
40 | const SELECT_ALL_OFFICES_SHARING_IATA_NR = "SAN"; |
||
41 | /** |
||
42 | * Satellite ticket office |
||
43 | */ |
||
44 | const SELECT_SATELLITE_TICKET_OFFICE = "STP"; |
||
45 | /** |
||
46 | * Ticket delivery office |
||
47 | */ |
||
48 | const SELECT_TICKET_DELIVERY_OFFICE = "TDO"; |
||
49 | /** |
||
50 | * by net remit qualifier |
||
51 | */ |
||
52 | const SELECT_BY_NET_REMIT = "BNR"; |
||
53 | |||
54 | /** |
||
55 | * self::SELECT_* |
||
56 | * |
||
57 | * @var string |
||
58 | */ |
||
59 | public $option; |
||
60 | |||
61 | /** |
||
62 | * SelectionDetails constructor. |
||
63 | * @param string $option |
||
64 | */ |
||
65 | public function __construct($option) |
||
69 | } |
||
70 |