Netsutie PHP Toolkit
PurchaseOrderExpense.php
Go to the documentation of this file.
1 <?php
9 
18  public $line;
19 
28  public $category;
29 
39 
48  public $account;
49 
58  public $amount;
59 
68  public $memo;
69 
78  public $department;
79 
88  public $class;
89 
98  public $location;
99 
108  public $customer;
109 
118  public $isClosed;
119 
128  public $isBillable;
129 
138  public $createdFrom;
139 
148  public $taxCode;
149 
158  public $taxRate1;
159 
168  public $taxRate2;
169 
178  public $tax1Amt;
179 
188  public $grossAmt;
189 
199 
200 
201 
202  static $paramtypesmap = array(
203 
204  "line" => "integer",
205 
206  "category" => "RecordRef",
207 
208  "linkedOrderList" => "RecordRefList",
209 
210  "account" => "RecordRef",
211 
212  "amount" => "float",
213 
214  "memo" => "string",
215 
216  "department" => "RecordRef",
217 
218  "class" => "RecordRef",
219 
220  "location" => "RecordRef",
221 
222  "customer" => "RecordRef",
223 
224  "isClosed" => "boolean",
225 
226  "isBillable" => "boolean",
227 
228  "createdFrom" => "RecordRef",
229 
230  "taxCode" => "RecordRef",
231 
232  "taxRate1" => "float",
233 
234  "taxRate2" => "float",
235 
236  "tax1Amt" => "float",
237 
238  "grossAmt" => "float",
239 
240  "customFieldList" => "CustomFieldList",
241 
242  );
243 
244 }