Netsutie PHP Toolkit
InventoryNumber.php
Go to the documentation of this file.
1 <?php
8 class InventoryNumber extends Record {
9 
19 
28  public $item;
29 
38  public $status;
39 
48  public $units;
49 
59 
68  public $memo;
69 
79 
89 
98  public $internalId;
99 
108  public $externalId;
109 
110 
111 
112  static $paramtypesmap = array(
113 
114  "inventoryNumber" => "string",
115 
116  "item" => "RecordRef",
117 
118  "status" => "string",
119 
120  "units" => "string",
121 
122  "expirationDate" => "dateTime",
123 
124  "memo" => "string",
125 
126  "locationsList" => "InventoryNumberLocationsList",
127 
128  "customFieldList" => "CustomFieldList",
129 
130  "internalId" => "string",
131 
132  "externalId" => "string",
133 
134  );
135 
136 }
Definition: Record.php:8