Netsutie PHP Toolkit
TransactionShipGroup.php
Go to the documentation of this file.
1 <?php
9 
18  public $id;
19 
28  public $isFulfilled;
29 
38  public $weight;
39 
49 
59 
69 
79 
89 
99 
109 
119 
129 
139 
149 
159 
169 
179 
189 
199 
209 
219 
229 
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "id" => "integer",
245 
246  "isFulfilled" => "boolean",
247 
248  "weight" => "float",
249 
250  "sourceAddressRef" => "RecordRef",
251 
252  "sourceAddress" => "string",
253 
254  "destinationAddressRef" => "RecordRef",
255 
256  "destinationAddress" => "string",
257 
258  "shippingMethodRef" => "RecordRef",
259 
260  "shippingMethod" => "string",
261 
262  "isHandlingTaxable" => "boolean",
263 
264  "handlingTaxCode" => "RecordRef",
265 
266  "handlingTaxRate" => "string",
267 
268  "handlingTax2Rate" => "string",
269 
270  "handlingRate" => "float",
271 
272  "handlingTaxAmt" => "float",
273 
274  "handlingTax2Amt" => "float",
275 
276  "isShippingTaxable" => "boolean",
277 
278  "shippingTaxCode" => "RecordRef",
279 
280  "shippingTaxRate" => "string",
281 
282  "shippingTax2Rate" => "string",
283 
284  "shippingRate" => "float",
285 
286  "shippingTaxAmt" => "float",
287 
288  "shippingTax2Amt" => "float",
289 
290  );
291 
292 }