Netsutie PHP Toolkit
ItemDemandPlan.php
Go to the documentation of this file.
1 <?php
8 class ItemDemandPlan 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 $year;
79 
88  public $month;
89 
98  public $startDate;
99 
108  public $endDate;
109 
119 
129 
139 
148  public $internalId;
149 
158  public $externalId;
159 
160 
161 
162  static $paramtypesmap = array(
163 
164  "customForm" => "RecordRef",
165 
166  "subsidiary" => "RecordRef",
167 
168  "location" => "RecordRef",
169 
170  "item" => "RecordRef",
171 
172  "units" => "RecordRef",
173 
174  "memo" => "string",
175 
176  "year" => "integer",
177 
178  "month" => "DemandPlanMonth",
179 
180  "startDate" => "dateTime",
181 
182  "endDate" => "dateTime",
183 
184  "demandPlanCalendarType" => "DemandPlanCalendarType",
185 
186  "demandPlanMatrix" => "DemandPlanMatrix",
187 
188  "customFieldList" => "CustomFieldList",
189 
190  "internalId" => "string",
191 
192  "externalId" => "string",
193 
194  );
195 
196 }
Definition: Record.php:8