Netsutie PHP Toolkit
TaxAcct.php
Go to the documentation of this file.
1 <?php
8 class TaxAcct extends Record {
9 
18  public $name;
19 
28  public $description;
29 
38  public $nexus;
39 
48  public $country;
49 
58  public $taxAcctType;
59 
68  public $isInactive;
69 
78  public $internalId;
79 
88  public $externalId;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "name" => "string",
95 
96  "description" => "string",
97 
98  "nexus" => "RecordRef",
99 
100  "country" => "Country",
101 
102  "taxAcctType" => "TaxAcctType",
103 
104  "isInactive" => "boolean",
105 
106  "internalId" => "string",
107 
108  "externalId" => "string",
109 
110  );
111 
112 }
$externalId
Definition: TaxAcct.php:88
$isInactive
Definition: TaxAcct.php:68
$description
Definition: TaxAcct.php:28
$country
Definition: TaxAcct.php:48
$taxAcctType
Definition: TaxAcct.php:58
$internalId
Definition: TaxAcct.php:78
Definition: Record.php:8
static $paramtypesmap
Definition: TaxAcct.php:92