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: /**
 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 SoldProducts {
10: 
11:     /**
12:      *
13:      * @var structures\invoices\Buyer
14:      */
15:     public $buyer;
16: 
17:     /**
18:      *
19:      * @var structures\invoices\Seller
20:      */
21:     public $seller;
22: 
23:     /**
24:      *
25:      * @var structures\invoices\Payment
26:      */
27:     public $payment;
28: 
29:     /**
30:      *
31:      * @var structures\invoices\Product[]
32:      */
33:     public $products;
34: 
35: }
36: 
API documentation generated by ApiGen