Netsutie PHP Toolkit
TermSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $dateDriven;
19 
29 
39 
49 
59 
69 
79 
89 
98  public $externalId;
99 
109 
118  public $internalId;
119 
129 
138  public $isInactive;
139 
148  public $name;
149 
158  public $preferred;
159 
160 
161 
162  static $paramtypesmap = array(
163 
164  "dateDriven" => "SearchBooleanField",
165 
166  "dayDiscountExpires" => "SearchLongField",
167 
168  "dayOfMonthNetDue" => "SearchLongField",
169 
170  "daysUntilExpiry" => "SearchLongField",
171 
172  "daysUntilNetDue" => "SearchLongField",
173 
174  "discountPercent" => "SearchDoubleField",
175 
176  "discountPercentDateDriven" => "SearchDoubleField",
177 
178  "dueNextMonthIfWithinDays" => "SearchLongField",
179 
180  "externalId" => "SearchMultiSelectField",
181 
182  "externalIdString" => "SearchStringField",
183 
184  "internalId" => "SearchMultiSelectField",
185 
186  "internalIdNumber" => "SearchLongField",
187 
188  "isInactive" => "SearchBooleanField",
189 
190  "name" => "SearchStringField",
191 
192  "preferred" => "SearchBooleanField",
193 
194  );
195 
196 }