Netsutie PHP Toolkit
TaxType.php
Go to the documentation of this file.
1 <?php
8 class TaxType extends Record {
9 
18  public $name;
19 
28  public $description;
29 
39 
48  public $internalId;
49 
58  public $externalId;
59 
60 
61 
62  static $paramtypesmap = array(
63 
64  "name" => "string",
65 
66  "description" => "string",
67 
68  "nexusesTaxList" => "TaxTypeNexusesTaxList",
69 
70  "internalId" => "string",
71 
72  "externalId" => "string",
73 
74  );
75 
76 }
$description
Definition: TaxType.php:28
$internalId
Definition: TaxType.php:48
$nexusesTaxList
Definition: TaxType.php:38
static $paramtypesmap
Definition: TaxType.php:62
$externalId
Definition: TaxType.php:58
Definition: Record.php:8