Netsutie PHP Toolkit
UnitsTypeUom.php
Go to the documentation of this file.
1 <?php
8 class UnitsTypeUom {
9 
18  public $internalId;
19 
28  public $unitName;
29 
38  public $pluralName;
39 
48  public $abbreviation;
49 
59 
69 
78  public $baseUnit;
79 
80 
81 
82  static $paramtypesmap = array(
83 
84  "internalId" => "string",
85 
86  "unitName" => "string",
87 
88  "pluralName" => "string",
89 
90  "abbreviation" => "string",
91 
92  "pluralAbbreviation" => "string",
93 
94  "conversionRate" => "float",
95 
96  "baseUnit" => "boolean",
97 
98  );
99 
100 }
static $paramtypesmap