Netsutie PHP Toolkit
TaxGroup.php
Go to the documentation of this file.
1 <?php
8 class TaxGroup extends Record {
9 
18  public $itemId;
19 
28  public $description;
29 
38  public $state;
39 
49 
58  public $taxitem1;
59 
68  public $unitprice1;
69 
78  public $taxitem2;
79 
88  public $unitprice2;
89 
98  public $piggyback;
99 
108  public $isInactive;
109 
118  public $rate;
119 
128  public $taxType;
129 
139 
148  public $county;
149 
158  public $city;
159 
168  public $zip;
169 
179 
188  public $isDefault;
189 
198  public $taxItemList;
199 
208  public $internalId;
209 
218  public $externalId;
219 
220 
221 
222  static $paramtypesmap = array(
223 
224  "itemId" => "string",
225 
226  "description" => "string",
227 
228  "state" => "string",
229 
230  "subsidiaryList" => "RecordRefList",
231 
232  "taxitem1" => "RecordRef",
233 
234  "unitprice1" => "string",
235 
236  "taxitem2" => "RecordRef",
237 
238  "unitprice2" => "string",
239 
240  "piggyback" => "boolean",
241 
242  "isInactive" => "boolean",
243 
244  "rate" => "float",
245 
246  "taxType" => "RecordRef",
247 
248  "includeChildren" => "boolean",
249 
250  "county" => "string",
251 
252  "city" => "string",
253 
254  "zip" => "string",
255 
256  "nexusCountry" => "RecordRef",
257 
258  "isDefault" => "boolean",
259 
260  "taxItemList" => "TaxGroupTaxItemList",
261 
262  "internalId" => "string",
263 
264  "externalId" => "string",
265 
266  );
267 
268 }
static $paramtypesmap
Definition: TaxGroup.php:222
$includeChildren
Definition: TaxGroup.php:138
$description
Definition: TaxGroup.php:28
$subsidiaryList
Definition: TaxGroup.php:48
Definition: Record.php:8