Netsutie PHP Toolkit
AssemblyBuild.php
Go to the documentation of this file.
1 <?php
8 class AssemblyBuild extends Record {
9 
18  public $createdDate;
19 
29 
39 
48  public $customForm;
49 
58  public $createdFrom;
59 
68  public $tranDate;
69 
79 
88  public $tranId;
89 
98  public $item;
99 
108  public $buildable;
109 
118  public $quantity;
119 
128  public $units;
129 
138  public $total;
139 
149 
159 
168  public $binNumbers;
169 
178  public $subsidiary;
179 
188  public $department;
189 
198  public $class;
199 
208  public $location;
209 
218  public $revision;
219 
228  public $memo;
229 
239 
249 
258  public $internalId;
259 
268  public $externalId;
269 
270 
271 
272  static $paramtypesmap = array(
273 
274  "createdDate" => "dateTime",
275 
276  "expirationDate" => "dateTime",
277 
278  "lastModifiedDate" => "dateTime",
279 
280  "customForm" => "RecordRef",
281 
282  "createdFrom" => "RecordRef",
283 
284  "tranDate" => "dateTime",
285 
286  "postingPeriod" => "RecordRef",
287 
288  "tranId" => "string",
289 
290  "item" => "RecordRef",
291 
292  "buildable" => "float",
293 
294  "quantity" => "float",
295 
296  "units" => "RecordRef",
297 
298  "total" => "float",
299 
300  "inventoryDetail" => "InventoryDetail",
301 
302  "serialNumbers" => "string",
303 
304  "binNumbers" => "string",
305 
306  "subsidiary" => "RecordRef",
307 
308  "department" => "RecordRef",
309 
310  "class" => "RecordRef",
311 
312  "location" => "RecordRef",
313 
314  "revision" => "RecordRef",
315 
316  "memo" => "string",
317 
318  "componentList" => "AssemblyComponentList",
319 
320  "customFieldList" => "CustomFieldList",
321 
322  "internalId" => "string",
323 
324  "externalId" => "string",
325 
326  );
327 
328 }
static $paramtypesmap
Definition: Record.php:8