Netsutie PHP Toolkit
Pricing.php
Go to the documentation of this file.
1 <?php
8 class Pricing {
9 
18  public $currency;
19 
28  public $priceLevel;
29 
38  public $discount;
39 
48  public $priceList;
49 
50 
51 
52  static $paramtypesmap = array(
53 
54  "currency" => "RecordRef",
55 
56  "priceLevel" => "RecordRef",
57 
58  "discount" => "float",
59 
60  "priceList" => "PriceList",
61 
62  );
63 
64 }
$priceLevel
Definition: Pricing.php:28
$priceList
Definition: Pricing.php:48
$discount
Definition: Pricing.php:38
static $paramtypesmap
Definition: Pricing.php:52
$currency
Definition: Pricing.php:18