Overview

Namespaces

  • None
  • structures
    • bookings
    • hotel
    • invoices

Classes

  • Credentials
  • DataSet
  • MatchSet
  • ResultSet
  • SoldProducts
  • structures\bookings\Accomodation
  • structures\bookings\Booking
  • structures\bookings\Customer
  • structures\bookings\Person
  • structures\bookings\Service
  • structures\bookings\Transport
  • structures\hotel\RLocation
  • structures\invoices\Buyer
  • structures\invoices\Payment
  • structures\invoices\Product
  • structures\invoices\Seller
  • Overview
  • Namespace
  • Class
 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 Customer {
12: 
13:     /**
14:      *
15:      * @var string
16:      */
17:     public $first_name;
18: 
19:     /**
20:      *
21:      * @var string
22:      */
23:     public $last_name;
24: 
25:     /**
26:      *
27:      * @var string
28:      */
29:     public $street;
30: 
31:     /**
32:      *
33:      * @var string
34:      */
35:     public $zip;
36: 
37:     /**
38:      *
39:      * @var string
40:      */
41:     public $city;
42: 
43:     /**
44:      * @var string
45:      */
46:     public $phone;
47: 
48:     /**
49:      *
50:      * @var string
51:      */
52:     public $edit_time;
53: 
54:     /**
55:      *
56:      * @var string
57:      */
58:     public $address_additional;
59: 
60:     /**
61:      *
62:      * @var string
63:      */
64:     public $otela_filekey;
65: 
66: }
67: 
API documentation generated by ApiGen