Netsutie PHP Toolkit
ItemOptionCustomField.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 $insertBefore;
69 
78  public $displayType;
79 
88  public $displayWidth;
89 
99 
108  public $help;
109 
118  public $linkText;
119 
128  public $isMandatory;
129 
138  public $maxLength;
139 
148  public $minValue;
149 
158  public $maxValue;
159 
169 
179 
188  public $isFormula;
189 
199 
209 
219 
229 
238  public $sourceList;
239 
248  public $sourceFrom;
249 
259 
268  public $colPurchase;
269 
278  public $colSale;
279 
289 
298  public $colStore;
299 
309 
319 
328  public $colAllItems;
329 
338  public $itemsList;
339 
348  public $colKitItem;
349 
358  public $filterList;
359 
369 
378  public $accessLevel;
379 
388  public $searchLevel;
389 
399 
409 
419 
429 
438  public $internalId;
439 
440 
441 
442  static $paramtypesmap = array(
443 
444  "label" => "string",
445 
446  "owner" => "RecordRef",
447 
448  "description" => "string",
449 
450  "selectRecordType" => "RecordRef",
451 
452  "storeValue" => "boolean",
453 
454  "insertBefore" => "RecordRef",
455 
456  "displayType" => "CustomizationDisplayType",
457 
458  "displayWidth" => "integer",
459 
460  "displayHeight" => "integer",
461 
462  "help" => "string",
463 
464  "linkText" => "string",
465 
466  "isMandatory" => "boolean",
467 
468  "maxLength" => "integer",
469 
470  "minValue" => "float",
471 
472  "maxValue" => "float",
473 
474  "defaultChecked" => "boolean",
475 
476  "defaultValue" => "string",
477 
478  "isFormula" => "boolean",
479 
480  "defaultSelection" => "RecordRef",
481 
482  "dynamicDefault" => "CustomizationDynamicDefault",
483 
484  "searchDefault" => "RecordRef",
485 
486  "searchCompareField" => "RecordRef",
487 
488  "sourceList" => "RecordRef",
489 
490  "sourceFrom" => "RecordRef",
491 
492  "sourceFilterBy" => "RecordRef",
493 
494  "colPurchase" => "boolean",
495 
496  "colSale" => "boolean",
497 
498  "colOpportunity" => "boolean",
499 
500  "colStore" => "boolean",
501 
502  "colStoreHidden" => "boolean",
503 
504  "colTransferOrder" => "boolean",
505 
506  "colAllItems" => "boolean",
507 
508  "itemsList" => "ItemsList",
509 
510  "colKitItem" => "boolean",
511 
512  "filterList" => "ItemOptionCustomFieldFilterList",
513 
514  "colOptionLabel" => "string",
515 
516  "accessLevel" => "CustomizationAccessLevel",
517 
518  "searchLevel" => "CustomizationSearchLevel",
519 
520  "roleAccessList" => "CustomFieldRoleAccessList",
521 
522  "deptAccessList" => "CustomFieldDepartmentAccessList",
523 
524  "subAccessList" => "CustomFieldSubAccessList",
525 
526  "translationsList" => "CustomFieldTranslationsList",
527 
528  "internalId" => "string",
529 
530  );
531 
532 }