Netsutie PHP Toolkit
InventoryTransfer.php
Go to the documentation of this file.
1 <?php
8 class InventoryTransfer extends Record {
9 
18  public $createdDate;
19 
29 
38  public $tranDate;
39 
49 
58  public $tranId;
59 
68  public $memo;
69 
78  public $location;
79 
89 
98  public $department;
99 
108  public $class;
109 
118  public $subsidiary;
119 
129 
138  public $internalId;
139 
148  public $externalId;
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "createdDate" => "dateTime",
155 
156  "lastModifiedDate" => "dateTime",
157 
158  "tranDate" => "dateTime",
159 
160  "postingPeriod" => "RecordRef",
161 
162  "tranId" => "string",
163 
164  "memo" => "string",
165 
166  "location" => "RecordRef",
167 
168  "transferLocation" => "RecordRef",
169 
170  "department" => "RecordRef",
171 
172  "class" => "RecordRef",
173 
174  "subsidiary" => "RecordRef",
175 
176  "inventoryList" => "InventoryTransferInventoryList",
177 
178  "internalId" => "string",
179 
180  "externalId" => "string",
181 
182  );
183 
184 }
Definition: Record.php:8