1: <?php
2:
3: /**
4: * WebServices for otela Enterprise Systems
5: *
6: * @copyright Copyright(C) 2016 otela Enterprise Systems
7: * @author Markus Bröker<markus.broeker@otela.net>
8: */
9: class DataSet {
10:
11: /**
12: *
13: * @var structures\bookings\Booking
14: */
15: public $booking;
16:
17: /**
18: *
19: * @var structures\bookings\Customer
20: */
21: public $customer;
22:
23: /**
24: *
25: * @var structures\bookings\Service[]
26: */
27: public $services;
28:
29: /**
30: *
31: * @var structures\bookings\Person[]
32: */
33: public $persons;
34:
35: /**
36: *
37: * @var structures\bookings\Transport[]
38: */
39: public $transports;
40:
41: /**
42: *
43: * @var structures\bookings\Accomodation[]
44: */
45: public $accomodations;
46:
47: }
48: