Netsutie PHP Toolkit
ContactCategory.php
Go to the documentation of this file.
1 <?php
8 class ContactCategory extends Record {
9 
18  public $name;
19 
28  public $private;
29 
38  public $sync;
39 
48  public $isInactive;
49 
58  public $internalId;
59 
68  public $externalId;
69 
70 
71 
72  static $paramtypesmap = array(
73 
74  "name" => "string",
75 
76  "private" => "boolean",
77 
78  "sync" => "boolean",
79 
80  "isInactive" => "boolean",
81 
82  "internalId" => "string",
83 
84  "externalId" => "string",
85 
86  );
87 
88 }
Definition: Record.php:8