Netsutie PHP Toolkit
ItemCustomField.php
Go to the documentation of this file.
1 <?php
9 
18  public $label;
19 
28  public $owner;
29 
38  public $itemMatrix;
39 
48  public $description;
49 
59 
68  public $storeValue;
69 
78  public $showInList;
79 
88  public $globalSearch;
89 
98  public $isParent;
99 
109 
118  public $subtab;
119 
128  public $displayType;
129 
139 
149 
158  public $help;
159 
169 
178  public $linkText;
179 
188  public $isMandatory;
189 
199 
208  public $maxLength;
209 
218  public $minValue;
219 
228  public $maxValue;
229 
239 
249 
258  public $isFormula;
259 
269 
279 
289 
299 
308  public $sourceList;
309 
318  public $sourceFrom;
319 
329 
339 
349 
359 
369 
379 
389 
399 
409 
418  public $itemSubType;
419 
428  public $filterList;
429 
439 
448  public $accessLevel;
449 
458  public $searchLevel;
459 
469 
479 
489 
499 
508  public $internalId;
509 
510 
511 
512  static $paramtypesmap = array(
513 
514  "label" => "string",
515 
516  "owner" => "RecordRef",
517 
518  "itemMatrix" => "boolean",
519 
520  "description" => "string",
521 
522  "selectRecordType" => "RecordRef",
523 
524  "storeValue" => "boolean",
525 
526  "showInList" => "boolean",
527 
528  "globalSearch" => "boolean",
529 
530  "isParent" => "boolean",
531 
532  "insertBefore" => "RecordRef",
533 
534  "subtab" => "RecordRef",
535 
536  "displayType" => "CustomizationDisplayType",
537 
538  "displayWidth" => "integer",
539 
540  "displayHeight" => "integer",
541 
542  "help" => "string",
543 
544  "parentSubtab" => "RecordRef",
545 
546  "linkText" => "string",
547 
548  "isMandatory" => "boolean",
549 
550  "checkSpelling" => "boolean",
551 
552  "maxLength" => "integer",
553 
554  "minValue" => "float",
555 
556  "maxValue" => "float",
557 
558  "defaultChecked" => "boolean",
559 
560  "defaultValue" => "string",
561 
562  "isFormula" => "boolean",
563 
564  "defaultSelection" => "RecordRef",
565 
566  "dynamicDefault" => "CustomizationDynamicDefault",
567 
568  "searchDefault" => "RecordRef",
569 
570  "searchCompareField" => "RecordRef",
571 
572  "sourceList" => "RecordRef",
573 
574  "sourceFrom" => "RecordRef",
575 
576  "sourceFilterBy" => "RecordRef",
577 
578  "appliesToInventory" => "boolean",
579 
580  "appliesToNonInventory" => "boolean",
581 
582  "appliesToService" => "boolean",
583 
584  "appliesToOtherCharge" => "boolean",
585 
586  "appliesToGroup" => "boolean",
587 
588  "appliesToKit" => "boolean",
589 
590  "appliesToItemAssembly" => "boolean",
591 
592  "availableToSso" => "boolean",
593 
594  "itemSubType" => "ItemCustomFieldItemSubType",
595 
596  "filterList" => "ItemCustomFieldFilterList",
597 
598  "appliesToPriceList" => "boolean",
599 
600  "accessLevel" => "CustomizationAccessLevel",
601 
602  "searchLevel" => "CustomizationSearchLevel",
603 
604  "roleAccessList" => "CustomFieldRoleAccessList",
605 
606  "deptAccessList" => "CustomFieldDepartmentAccessList",
607 
608  "subAccessList" => "CustomFieldSubAccessList",
609 
610  "translationsList" => "CustomFieldTranslationsList",
611 
612  "internalId" => "string",
613 
614  );
615 
616 }