Netsutie PHP Toolkit
ItemNumberCustomField.php
Go to the documentation of this file.
1 <?php
9 
18  public $label;
19 
28  public $owner;
29 
38  public $description;
39 
49 
58  public $storeValue;
59 
68  public $showInList;
69 
78  public $insertBefore;
79 
88  public $displayType;
89 
98  public $displayWidth;
99 
109 
118  public $help;
119 
128  public $linkText;
129 
138  public $isMandatory;
139 
149 
158  public $maxLength;
159 
168  public $minValue;
169 
178  public $maxValue;
179 
189 
199 
208  public $isFormula;
209 
219 
229 
239 
249 
258  public $sourceList;
259 
268  public $sourceFrom;
269 
279 
288  public $accessLevel;
289 
298  public $searchLevel;
299 
308  public $filterList;
309 
319 
329 
339 
349 
359 
369 
378  public $itemsList;
379 
389 
398  public $internalId;
399 
400 
401 
402  static $paramtypesmap = array(
403 
404  "label" => "string",
405 
406  "owner" => "RecordRef",
407 
408  "description" => "string",
409 
410  "selectRecordType" => "RecordRef",
411 
412  "storeValue" => "boolean",
413 
414  "showInList" => "boolean",
415 
416  "insertBefore" => "RecordRef",
417 
418  "displayType" => "CustomizationDisplayType",
419 
420  "displayWidth" => "integer",
421 
422  "displayHeight" => "integer",
423 
424  "help" => "string",
425 
426  "linkText" => "string",
427 
428  "isMandatory" => "boolean",
429 
430  "checkSpelling" => "boolean",
431 
432  "maxLength" => "integer",
433 
434  "minValue" => "float",
435 
436  "maxValue" => "float",
437 
438  "defaultChecked" => "boolean",
439 
440  "defaultValue" => "string",
441 
442  "isFormula" => "boolean",
443 
444  "defaultSelection" => "RecordRef",
445 
446  "dynamicDefault" => "CustomizationDynamicDefault",
447 
448  "searchDefault" => "RecordRef",
449 
450  "searchCompareField" => "RecordRef",
451 
452  "sourceList" => "RecordRef",
453 
454  "sourceFrom" => "RecordRef",
455 
456  "sourceFilterBy" => "RecordRef",
457 
458  "accessLevel" => "CustomizationAccessLevel",
459 
460  "searchLevel" => "CustomizationSearchLevel",
461 
462  "filterList" => "ItemNumberCustomFieldFilterList",
463 
464  "roleAccessList" => "CustomFieldRoleAccessList",
465 
466  "deptAccessList" => "CustomFieldDepartmentAccessList",
467 
468  "appliesToAllItems" => "boolean",
469 
470  "appliesToSerialized" => "boolean",
471 
472  "appliesToLots" => "boolean",
473 
474  "appliesToGiftCerts" => "boolean",
475 
476  "itemsList" => "RecordRefList",
477 
478  "translationsList" => "CustomFieldTranslationsList",
479 
480  "internalId" => "string",
481 
482  );
483 
484 }