Netsutie PHP Toolkit
NoteSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $author;
19 
28  public $direction;
29 
38  public $externalId;
39 
49 
58  public $internalId;
59 
69 
78  public $note;
79 
88  public $noteDate;
89 
98  public $noteType;
99 
108  public $title;
109 
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "author" => "SearchMultiSelectField",
125 
126  "direction" => "SearchBooleanField",
127 
128  "externalId" => "SearchMultiSelectField",
129 
130  "externalIdString" => "SearchStringField",
131 
132  "internalId" => "SearchMultiSelectField",
133 
134  "internalIdNumber" => "SearchLongField",
135 
136  "note" => "SearchStringField",
137 
138  "noteDate" => "SearchDateField",
139 
140  "noteType" => "SearchMultiSelectField",
141 
142  "title" => "SearchStringField",
143 
144  "customFieldList" => "SearchCustomFieldList",
145 
146  );
147 
148 }