Netsutie PHP Toolkit
DiscountItem.php
Go to the documentation of this file.
1 <?php
8 class DiscountItem extends Record {
9 
18  public $createdDate;
19 
29 
38  public $description;
39 
48  public $nonPosting;
49 
58  public $account;
59 
69 
78  public $rate;
79 
88  public $isPreTax;
89 
98  public $customForm;
99 
108  public $itemId;
109 
119 
128  public $upcCode;
129 
138  public $displayName;
139 
148  public $vendorName;
149 
158  public $parent;
159 
168  public $isInactive;
169 
179 
188  public $department;
189 
198  public $class;
199 
208  public $location;
209 
219 
228  public $taxSchedule;
229 
239 
249 
259 
269 
279 
289 
299 
308  public $internalId;
309 
318  public $externalId;
319 
320 
321 
322  static $paramtypesmap = array(
323 
324  "createdDate" => "dateTime",
325 
326  "lastModifiedDate" => "dateTime",
327 
328  "description" => "string",
329 
330  "nonPosting" => "boolean",
331 
332  "account" => "RecordRef",
333 
334  "includeChildren" => "boolean",
335 
336  "rate" => "string",
337 
338  "isPreTax" => "boolean",
339 
340  "customForm" => "RecordRef",
341 
342  "itemId" => "string",
343 
344  "issueProduct" => "RecordRef",
345 
346  "upcCode" => "string",
347 
348  "displayName" => "string",
349 
350  "vendorName" => "string",
351 
352  "parent" => "RecordRef",
353 
354  "isInactive" => "boolean",
355 
356  "availableToPartners" => "boolean",
357 
358  "department" => "RecordRef",
359 
360  "class" => "RecordRef",
361 
362  "location" => "RecordRef",
363 
364  "subsidiaryList" => "RecordRefList",
365 
366  "taxSchedule" => "RecordRef",
367 
368  "deferredRevenueAccount" => "RecordRef",
369 
370  "expenseAccount" => "RecordRef",
371 
372  "incomeAccount" => "RecordRef",
373 
374  "revRecSchedule" => "RecordRef",
375 
376  "salesTaxCode" => "RecordRef",
377 
378  "translationsList" => "TranslationList",
379 
380  "customFieldList" => "CustomFieldList",
381 
382  "internalId" => "string",
383 
384  "externalId" => "string",
385 
386  );
387 
388 }
static $paramtypesmap
Definition: Record.php:8