1: <?php
2:
3: namespace structures\bookings;
4:
5: /**
6: * WebServices for otela Enterprise Systems
7: *
8: * @copyright Copyright(C) 2016 otela Enterprise Systems
9: * @author Markus Bröker<markus.broeker@otela.net>
10: */
11: class Transport {
12:
13: /**
14: *
15: * @var string
16: */
17: public $flight_no;
18:
19: /**
20: *
21: * @var string
22: */
23: public $departure_date;
24:
25: /**
26: *
27: * @var string
28: */
29: public $departure_location_code;
30:
31: /**
32: *
33: * @var string
34: */
35: public $arrival_date;
36:
37: /**
38: *
39: * @var string
40: */
41: public $arrival_location_code;
42:
43: /**
44: *
45: * @var string
46: */
47: public $edit_timestamp;
48:
49: /**
50: *
51: * @var string
52: */
53: public $otela_filekey;
54:
55: }
56: