Netsutie PHP Toolkit
CustomRecordType.php
Go to the documentation of this file.
1 <?php
8 class CustomRecordType extends Record {
9 
18  public $recordName;
19 
28  public $includeName;
29 
38  public $showId;
39 
49 
59 
69 
79 
88  public $showOwner;
89 
99 
109 
118  public $accessType;
119 
129 
138  public $showNotes;
139 
149 
158  public $isOrdered;
159 
169 
179 
188  public $enableDle;
189 
199 
208  public $isInactive;
209 
218  public $disclaimer;
219 
229 
239 
249 
259 
269 
279 
289 
299 
308  public $owner;
309 
318  public $description;
319 
328  public $tabsList;
329 
339 
348  public $formsList;
349 
359 
369 
378  public $linksList;
379 
389 
399 
408  public $parentsList;
409 
419 
428  public $scriptId;
429 
439 
448  public $internalId;
449 
450 
451 
452  static $paramtypesmap = array(
453 
454  "recordName" => "string",
455 
456  "includeName" => "boolean",
457 
458  "showId" => "boolean",
459 
460  "showCreationDate" => "boolean",
461 
462  "showCreationDateOnList" => "boolean",
463 
464  "showLastModified" => "boolean",
465 
466  "showLastModifiedOnList" => "boolean",
467 
468  "showOwner" => "boolean",
469 
470  "showOwnerOnList" => "boolean",
471 
472  "showOwnerAllowChange" => "boolean",
473 
474  "accessType" => "CustomRecordTypeAccessType",
475 
476  "allowAttachments" => "boolean",
477 
478  "showNotes" => "boolean",
479 
480  "enableMailMerge" => "boolean",
481 
482  "isOrdered" => "boolean",
483 
484  "isAvailableOffline" => "boolean",
485 
486  "allowQuickSearch" => "boolean",
487 
488  "enableDle" => "boolean",
489 
490  "enableNameTranslation" => "boolean",
491 
492  "isInactive" => "boolean",
493 
494  "disclaimer" => "string",
495 
496  "enableNumbering" => "boolean",
497 
498  "numberingPrefix" => "string",
499 
500  "numberingSuffix" => "string",
501 
502  "numberingMinDigits" => "integer",
503 
504  "numberingInit" => "integer",
505 
506  "numberingCurrentNumber" => "integer",
507 
508  "allowNumberingOverride" => "boolean",
509 
510  "isNumberingUpdateable" => "boolean",
511 
512  "owner" => "RecordRef",
513 
514  "description" => "string",
515 
516  "tabsList" => "CustomRecordTypeTabsList",
517 
518  "sublistsList" => "CustomRecordTypeSublistsList",
519 
520  "formsList" => "CustomRecordTypeFormsList",
521 
522  "onlineFormsList" => "CustomRecordTypeOnlineFormsList",
523 
524  "permissionsList" => "CustomRecordTypePermissionsList",
525 
526  "linksList" => "CustomRecordTypeLinksList",
527 
528  "managersList" => "CustomRecordTypeManagersList",
529 
530  "childrenList" => "CustomRecordTypeChildrenList",
531 
532  "parentsList" => "CustomRecordTypeParentsList",
533 
534  "translationsList" => "CustomRecordTypeTranslationsList",
535 
536  "scriptId" => "string",
537 
538  "customFieldList" => "CustomRecordTypeFieldList",
539 
540  "internalId" => "string",
541 
542  );
543 
544 }
Definition: Record.php:8