Netsutie PHP Toolkit
OtherNameCategory.php
Go to the documentation of this file.
1 <?php
8 class OtherNameCategory extends Record {
9 
18  public $name;
19 
28  public $isInactive;
29 
38  public $internalId;
39 
48  public $externalId;
49 
50 
51 
52  static $paramtypesmap = array(
53 
54  "name" => "string",
55 
56  "isInactive" => "boolean",
57 
58  "internalId" => "string",
59 
60  "externalId" => "string",
61 
62  );
63 
64 }
Definition: Record.php:8