Netsutie PHP Toolkit
CheckExpense.php
Go to the documentation of this file.
1 <?php
8 class CheckExpense {
9 
18  public $line;
19 
28  public $category;
29 
38  public $account;
39 
48  public $amount;
49 
58  public $memo;
59 
68  public $department;
69 
78  public $class;
79 
88  public $location;
89 
98  public $customer;
99 
108  public $isBillable;
109 
118  public $taxCode;
119 
128  public $taxRate1;
129 
138  public $tax1Amt;
139 
148  public $taxRate2;
149 
158  public $grossAmt;
159 
169 
170 
171 
172  static $paramtypesmap = array(
173 
174  "line" => "integer",
175 
176  "category" => "RecordRef",
177 
178  "account" => "RecordRef",
179 
180  "amount" => "float",
181 
182  "memo" => "string",
183 
184  "department" => "RecordRef",
185 
186  "class" => "RecordRef",
187 
188  "location" => "RecordRef",
189 
190  "customer" => "RecordRef",
191 
192  "isBillable" => "boolean",
193 
194  "taxCode" => "RecordRef",
195 
196  "taxRate1" => "float",
197 
198  "tax1Amt" => "float",
199 
200  "taxRate2" => "float",
201 
202  "grossAmt" => "float",
203 
204  "customFieldList" => "CustomFieldList",
205 
206  );
207 
208 }
static $paramtypesmap