Netsutie PHP Toolkit
CreditMemoItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $job;
19 
28  public $item;
29 
38  public $orderLine;
39 
48  public $line;
49 
58  public $quantity;
59 
68  public $description;
69 
78  public $binNumbers;
79 
88  public $price;
89 
98  public $rate;
99 
108  public $amount;
109 
118  public $isTaxable;
119 
128  public $options;
129 
138  public $taxCode;
139 
148  public $taxRate1;
149 
158  public $taxRate2;
159 
168  public $tax1Amt;
169 
178  public $grossAmt;
179 
188  public $department;
189 
198  public $class;
199 
208  public $location;
209 
219 
229 
239 
249 
259 
269 
278  public $units;
279 
289 
299 
308  public $deferRevRec;
309 
319 
329 
339 
349 
359 
369 
379 
388  public $vsoePrice;
389 
398  public $vsoeAmount;
399 
409 
419 
429 
439 
449 
458  public $chargeType;
459 
468  public $chargesList;
469 
479 
480 
481 
482  static $paramtypesmap = array(
483 
484  "job" => "RecordRef",
485 
486  "item" => "RecordRef",
487 
488  "orderLine" => "integer",
489 
490  "line" => "integer",
491 
492  "quantity" => "float",
493 
494  "description" => "string",
495 
496  "binNumbers" => "string",
497 
498  "price" => "RecordRef",
499 
500  "rate" => "string",
501 
502  "amount" => "float",
503 
504  "isTaxable" => "boolean",
505 
506  "options" => "CustomFieldList",
507 
508  "taxCode" => "RecordRef",
509 
510  "taxRate1" => "float",
511 
512  "taxRate2" => "float",
513 
514  "tax1Amt" => "float",
515 
516  "grossAmt" => "float",
517 
518  "department" => "RecordRef",
519 
520  "class" => "RecordRef",
521 
522  "location" => "RecordRef",
523 
524  "costEstimateType" => "ItemCostEstimateType",
525 
526  "costEstimate" => "float",
527 
528  "revRecSchedule" => "RecordRef",
529 
530  "revRecStartDate" => "dateTime",
531 
532  "revRecTermInMonths" => "integer",
533 
534  "revRecEndDate" => "dateTime",
535 
536  "units" => "RecordRef",
537 
538  "inventoryDetail" => "InventoryDetail",
539 
540  "serialNumbers" => "string",
541 
542  "deferRevRec" => "boolean",
543 
544  "giftCertFrom" => "string",
545 
546  "giftCertRecipientName" => "string",
547 
548  "giftCertRecipientEmail" => "string",
549 
550  "giftCertMessage" => "string",
551 
552  "giftCertNumber" => "string",
553 
554  "vsoeSopGroup" => "VsoeSopGroup",
555 
556  "vsoeIsEstimate" => "boolean",
557 
558  "vsoePrice" => "float",
559 
560  "vsoeAmount" => "float",
561 
562  "vsoeAllocation" => "float",
563 
564  "vsoeDeferral" => "VsoeDeferral",
565 
566  "vsoePermitDiscount" => "VsoePermitDiscount",
567 
568  "vsoeDelivered" => "boolean",
569 
570  "catchUpPeriod" => "RecordRef",
571 
572  "chargeType" => "RecordRef",
573 
574  "chargesList" => "RecordRefList",
575 
576  "customFieldList" => "CustomFieldList",
577 
578  );
579 
580 }