Netsutie PHP Toolkit
ItemReceipt.php
Go to the documentation of this file.
1 <?php
8 class ItemReceipt extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $exchangeRate;
49 
58  public $entity;
59 
68  public $currencyName;
69 
78  public $subsidiary;
79 
88  public $createdFrom;
89 
98  public $tranDate;
99 
108  public $partner;
109 
119 
128  public $tranId;
129 
138  public $memo;
139 
148  public $currency;
149 
159 
169 
178  public $itemList;
179 
188  public $expenseList;
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  "exchangeRate" => "float",
241 
242  "entity" => "RecordRef",
243 
244  "currencyName" => "string",
245 
246  "subsidiary" => "RecordRef",
247 
248  "createdFrom" => "RecordRef",
249 
250  "tranDate" => "dateTime",
251 
252  "partner" => "RecordRef",
253 
254  "postingPeriod" => "RecordRef",
255 
256  "tranId" => "string",
257 
258  "memo" => "string",
259 
260  "currency" => "RecordRef",
261 
262  "landedCostMethod" => "LandedCostMethod",
263 
264  "landedCostPerLine" => "boolean",
265 
266  "itemList" => "ItemReceiptItemList",
267 
268  "expenseList" => "ItemReceiptExpenseList",
269 
270  "landedCostsList" => "PurchLandedCostList",
271 
272  "customFieldList" => "CustomFieldList",
273 
274  "internalId" => "string",
275 
276  "externalId" => "string",
277 
278  );
279 
280 }
static $paramtypesmap
Definition: Record.php:8