Netsutie PHP Toolkit
CustomTransaction.php
Go to the documentation of this file.
1 <?php
8 class CustomTransaction extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $tranType;
49 
58  public $tranId;
59 
68  public $total;
69 
78  public $currency;
79 
88  public $voidJournal;
89 
98  public $exchangeRate;
99 
108  public $tranDate;
109 
119 
128  public $memo;
129 
138  public $tranStatus;
139 
148  public $subsidiary;
149 
158  public $department;
159 
168  public $class;
169 
178  public $location;
179 
188  public $lineList;
189 
199 
209 
218  public $internalId;
219 
228  public $externalId;
229 
230 
231 
232  static $paramtypesmap = array(
233 
234  "createdDate" => "dateTime",
235 
236  "lastModifiedDate" => "dateTime",
237 
238  "customForm" => "RecordRef",
239 
240  "tranType" => "RecordRef",
241 
242  "tranId" => "string",
243 
244  "total" => "float",
245 
246  "currency" => "RecordRef",
247 
248  "voidJournal" => "RecordRef",
249 
250  "exchangeRate" => "float",
251 
252  "tranDate" => "dateTime",
253 
254  "postingPeriod" => "RecordRef",
255 
256  "memo" => "string",
257 
258  "tranStatus" => "RecordRef",
259 
260  "subsidiary" => "RecordRef",
261 
262  "department" => "RecordRef",
263 
264  "class" => "RecordRef",
265 
266  "location" => "RecordRef",
267 
268  "lineList" => "CustomTransactionLineList",
269 
270  "accountingBookDetailList" => "CustomTransactionAccountingBookDetailList",
271 
272  "customFieldList" => "CustomFieldList",
273 
274  "internalId" => "string",
275 
276  "externalId" => "string",
277 
278  );
279 
280 }
Definition: Record.php:8