Netsutie PHP Toolkit
AssemblyUnbuild.php
Go to the documentation of this file.
1 <?php
8 class AssemblyUnbuild extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $tranDate;
49 
59 
68  public $tranId;
69 
78  public $item;
79 
88  public $built;
89 
98  public $quantity;
99 
108  public $units;
109 
118  public $total;
119 
129 
139 
148  public $binNumbers;
149 
158  public $subsidiary;
159 
168  public $department;
169 
178  public $class;
179 
188  public $location;
189 
198  public $memo;
199 
209 
219 
228  public $internalId;
229 
238  public $externalId;
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "createdDate" => "dateTime",
245 
246  "lastModifiedDate" => "dateTime",
247 
248  "customForm" => "RecordRef",
249 
250  "tranDate" => "dateTime",
251 
252  "postingPeriod" => "RecordRef",
253 
254  "tranId" => "string",
255 
256  "item" => "RecordRef",
257 
258  "built" => "float",
259 
260  "quantity" => "float",
261 
262  "units" => "RecordRef",
263 
264  "total" => "float",
265 
266  "serialNumbers" => "string",
267 
268  "inventoryDetail" => "InventoryDetail",
269 
270  "binNumbers" => "string",
271 
272  "subsidiary" => "RecordRef",
273 
274  "department" => "RecordRef",
275 
276  "class" => "RecordRef",
277 
278  "location" => "RecordRef",
279 
280  "memo" => "string",
281 
282  "componentList" => "AssemblyComponentList",
283 
284  "customFieldList" => "CustomFieldList",
285 
286  "internalId" => "string",
287 
288  "externalId" => "string",
289 
290  );
291 
292 }
Definition: Record.php:8