Netsutie PHP Toolkit
CrmCustomField.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 $globalSearch;
79 
88  public $isParent;
89 
98  public $insertBefore;
99 
108  public $subtab;
109 
118  public $displayType;
119 
129 
139 
148  public $help;
149 
159 
168  public $linkText;
169 
178  public $isMandatory;
179 
189 
198  public $maxLength;
199 
208  public $minValue;
209 
218  public $maxValue;
219 
229 
239 
248  public $isFormula;
249 
259 
269 
279 
289 
298  public $sourceList;
299 
308  public $sourceFrom;
309 
319 
329 
339 
349 
359 
369 
379 
389 
399 
409 
419 
429 
439 
449 
458  public $filterList;
459 
468  public $accessLevel;
469 
478  public $searchLevel;
479 
489 
499 
509 
519 
528  public $internalId;
529 
530 
531 
532  static $paramtypesmap = array(
533 
534  "label" => "string",
535 
536  "owner" => "RecordRef",
537 
538  "description" => "string",
539 
540  "selectRecordType" => "RecordRef",
541 
542  "storeValue" => "boolean",
543 
544  "showInList" => "boolean",
545 
546  "globalSearch" => "boolean",
547 
548  "isParent" => "boolean",
549 
550  "insertBefore" => "RecordRef",
551 
552  "subtab" => "RecordRef",
553 
554  "displayType" => "CustomizationDisplayType",
555 
556  "displayWidth" => "integer",
557 
558  "displayHeight" => "integer",
559 
560  "help" => "string",
561 
562  "parentSubtab" => "RecordRef",
563 
564  "linkText" => "string",
565 
566  "isMandatory" => "boolean",
567 
568  "checkSpelling" => "boolean",
569 
570  "maxLength" => "integer",
571 
572  "minValue" => "float",
573 
574  "maxValue" => "float",
575 
576  "defaultChecked" => "boolean",
577 
578  "defaultValue" => "string",
579 
580  "isFormula" => "boolean",
581 
582  "defaultSelection" => "RecordRef",
583 
584  "dynamicDefault" => "CustomizationDynamicDefault",
585 
586  "searchDefault" => "RecordRef",
587 
588  "searchCompareField" => "RecordRef",
589 
590  "sourceList" => "RecordRef",
591 
592  "sourceFrom" => "RecordRef",
593 
594  "sourceFilterBy" => "RecordRef",
595 
596  "appliesToTask" => "boolean",
597 
598  "appliesToMfgProjectTask" => "boolean",
599 
600  "appliesToProjectTask" => "boolean",
601 
602  "appliesToPhoneCall" => "boolean",
603 
604  "appliesToEvent" => "boolean",
605 
606  "appliesToCase" => "boolean",
607 
608  "appliesToCampaign" => "boolean",
609 
610  "appliesPerKeyword" => "boolean",
611 
612  "appliesToSolution" => "boolean",
613 
614  "appliesToIssue" => "boolean",
615 
616  "availableExternally" => "boolean",
617 
618  "availableToSso" => "boolean",
619 
620  "showIssueChanges" => "boolean",
621 
622  "filterList" => "CrmCustomFieldFilterList",
623 
624  "accessLevel" => "CustomizationAccessLevel",
625 
626  "searchLevel" => "CustomizationSearchLevel",
627 
628  "roleAccessList" => "CustomFieldRoleAccessList",
629 
630  "deptAccessList" => "CustomFieldDepartmentAccessList",
631 
632  "subAccessList" => "CustomFieldSubAccessList",
633 
634  "translationsList" => "CustomFieldTranslationsList",
635 
636  "internalId" => "string",
637 
638  );
639 
640 }