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