Netsutie PHP Toolkit
ItemMember.php
Go to the documentation of this file.
1 <?php
8 class ItemMember {
9 
18  public $memberDescr;
19 
29 
38  public $bomQuantity;
39 
48  public $quantity;
49 
58  public $memberUnit;
59 
68  public $vsoeDeferral;
69 
79 
89 
98  public $taxSchedule;
99 
108  public $taxcode;
109 
118  public $item;
119 
128  public $taxrate;
129 
139 
149 
159 
169 
178  public $lineNumber;
179 
188  public $memberKey;
189 
190 
191 
192  static $paramtypesmap = array(
193 
194  "memberDescr" => "string",
195 
196  "componentYield" => "float",
197 
198  "bomQuantity" => "float",
199 
200  "quantity" => "float",
201 
202  "memberUnit" => "string",
203 
204  "vsoeDeferral" => "VsoeDeferral",
205 
206  "vsoePermitDiscount" => "VsoePermitDiscount",
207 
208  "vsoeDelivered" => "boolean",
209 
210  "taxSchedule" => "RecordRef",
211 
212  "taxcode" => "string",
213 
214  "item" => "RecordRef",
215 
216  "taxrate" => "float",
217 
218  "effectiveDate" => "dateTime",
219 
220  "obsoleteDate" => "dateTime",
221 
222  "effectiveRevision" => "RecordRef",
223 
224  "obsoleteRevision" => "RecordRef",
225 
226  "lineNumber" => "integer",
227 
228  "memberKey" => "string",
229 
230  );
231 
232 }
static $paramtypesmap
Definition: ItemMember.php:192