Netsutie PHP Toolkit
ContactCategorySearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $externalId;
19 
29 
38  public $internalId;
39 
49 
58  public $isInactive;
59 
68  public $name;
69 
78  public $private;
79 
88  public $sync;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "externalId" => "SearchMultiSelectField",
95 
96  "externalIdString" => "SearchStringField",
97 
98  "internalId" => "SearchMultiSelectField",
99 
100  "internalIdNumber" => "SearchLongField",
101 
102  "isInactive" => "SearchBooleanField",
103 
104  "name" => "SearchStringField",
105 
106  "private" => "SearchBooleanField",
107 
108  "sync" => "SearchBooleanField",
109 
110  );
111 
112 }