Netsutie PHP Toolkit
NoteType.php
Go to the documentation of this file.
1 <?php
8 class NoteType extends Record {
9 
18  public $name;
19 
28  public $description;
29 
38  public $isInactive;
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  "isInactive" => "boolean",
69 
70  "internalId" => "string",
71 
72  "externalId" => "string",
73 
74  );
75 
76 }
$description
Definition: NoteType.php:28
Definition: Record.php:8
static $paramtypesmap
Definition: NoteType.php:62