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