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 Accomodation {
 12: 
 13:     /**
 14:      *
 15:      * @var string
 16:      */
 17:     public $accomodation_type;
 18: 
 19:     /**
 20:      *
 21:      * @var string
 22:      */
 23:     public $adult_quantity;
 24: 
 25:     /**
 26:      *
 27:      * @var string
 28:      */
 29:     public $arrival_timestamp;
 30: 
 31:     /**
 32:      *
 33:      * @var string
 34:      */
 35:     public $building_location_point;
 36: 
 37:     /**
 38:      *
 39:      * @var string
 40:      */
 41:     public $category_code;
 42: 
 43:     /**
 44:      *
 45:      * @var string
 46:      */
 47:     public $category_text;
 48: 
 49:     /**
 50:      *
 51:      * @var string
 52:      */
 53:     public $catering_code;
 54: 
 55:     /**
 56:      *
 57:      * @var string
 58:      */
 59:     public $catering_text;
 60: 
 61:     /**
 62:      *
 63:      * @var string
 64:      */
 65:     public $child_quantity;
 66: 
 67:     /**
 68:      *
 69:      * @var string
 70:      */
 71:     public $city;
 72: 
 73:     /**
 74:      *
 75:      * @var string
 76:      */
 77:     public $country;
 78: 
 79:     /**
 80:      *
 81:      * @var string
 82:      */
 83:     public $departure_date;
 84: 
 85:     /**
 86:      *
 87:      * @var string
 88:      */
 89:     public $description;
 90: 
 91:     /**
 92:      *
 93:      * @var string
 94:      */
 95:     public $edit_time;
 96: 
 97:     /**
 98:      *
 99:      * @var string
100:      */
101:     public $facility;
102: 
103:     /**
104:      *
105:      * @var string
106:      */
107:     public $fax;
108: 
109:     /**
110:      *
111:      * @var string
112:      */
113:     public $floor;
114: 
115:     /**
116:      *
117:      * @var string
118:      */
119:     public $furniture;
120: 
121:     /**
122:      *
123:      * @var string
124:      */
125:     public $infant_quantity;
126: 
127:     /**
128:      *
129:      * @var string
130:      */
131:     public $latitude;
132: 
133:     /**
134:      *
135:      * @var string
136:      */
137:     public $longitude;
138: 
139:     /**
140:      *
141:      * @var string
142:      */
143:     public $name;
144: 
145:     /**
146:      *
147:      * @var string
148:      */
149:     public $occupancy;
150: 
151:     /**
152:      *
153:      * @var string
154:      */
155:     public $phone;
156: 
157:     /**
158:      *
159:      * @var string
160:      */
161:     public $post_office_box;
162: 
163:     /**
164:      *
165:      * @var string
166:      */
167:     public $province;
168: 
169:     /**
170:      *
171:      * @var string
172:      */
173:     public $room_facility;
174: 
175:     /**
176:      *
177:      * @var string
178:      */
179:     public $room_number;
180: 
181:     /**
182:      *
183:      * @var string
184:      */
185:     public $roomtype_code;
186: 
187:     /**
188:      *
189:      * @var string
190:      */
191:     public $roomtype_text;
192: 
193:     /**
194:      *
195:      * @var string
196:      */
197:     public $street;
198: 
199:     /**
200:      *
201:      * @var string
202:      */
203:     public $street_addition;
204: 
205:     /**
206:      *
207:      * @var string
208:      */
209:     public $transport_id;
210: 
211:     /**
212:      *
213:      * @var string
214:      */
215:     public $zip_code;
216: 
217: }
218: 
API documentation generated by ApiGen