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 Person {
 12: 
 13:     /**
 14:      *
 15:      * @var string
 16:      */
 17:     public $title;
 18: 
 19:     /**
 20:      *
 21:      * @var string
 22:      */
 23:     public $first_name;
 24: 
 25:     /**
 26:      *
 27:      * @var string
 28:      */
 29:     public $last_name;
 30: 
 31:     /**
 32:      *
 33:      * @var string
 34:      */
 35:     public $street;
 36: 
 37:     /**
 38:      *
 39:      * @var string
 40:      */
 41:     public $zip;
 42: 
 43:     /**
 44:      *
 45:      * @var string
 46:      */
 47:     public $city;
 48: 
 49:     /**
 50:      *
 51:      * @var string
 52:      */
 53:     public $phone;
 54: 
 55:     /**
 56:      *
 57:      * @var string
 58:      */
 59:     public $address_additional;
 60: 
 61:     /**
 62:      *
 63:      * @var string
 64:      */
 65:     public $edit_time;
 66: 
 67:     /**
 68:      *
 69:      * @var string
 70:      */
 71:     public $birthday;
 72: 
 73:     /**
 74:      *
 75:      * @var string
 76:      */
 77:     public $passno;
 78: 
 79:     /**
 80:      *
 81:      * @var string
 82:      */
 83:     public $pass_date_of_issue;
 84: 
 85:     /**
 86:      *
 87:      * @var string
 88:      */
 89:     public $pass_date_of_exp;
 90: 
 91:     /**
 92:      *
 93:      * @var string
 94:      */
 95:     public $nationality;
 96: 
 97:     /**
 98:      *
 99:      * @var string
100:      */
101:     public $otela_filekey;
102: 
103: }
104: 
API documentation generated by ApiGen