Netsutie PHP Toolkit
CustomRecord.php
Go to the documentation of this file.
1 <?php
8 class CustomRecord extends Record {
9 
19 
28  public $customForm;
29 
38  public $isInactive;
39 
48  public $disclaimer;
49 
58  public $created;
59 
68  public $lastModified;
69 
78  public $name;
79 
88  public $autoName;
89 
98  public $altName;
99 
108  public $owner;
109 
118  public $recType;
119 
129 
139 
149 
159 
168  public $description;
169 
179 
189 
199 
209 
219 
228  public $includeName;
229 
238  public $showId;
239 
249 
259 
269 
279 
288  public $showOwner;
289 
299 
309 
319 
329 
338  public $showNotes;
339 
349 
358  public $isOrdered;
359 
369 
379 
389 
398  public $recordName;
399 
408  public $scriptId;
409 
419 
428  public $internalId;
429 
438  public $externalId;
439 
440 
441 
442  static $paramtypesmap = array(
443 
444  "customRecordId" => "string",
445 
446  "customForm" => "RecordRef",
447 
448  "isInactive" => "boolean",
449 
450  "disclaimer" => "string",
451 
452  "created" => "dateTime",
453 
454  "lastModified" => "dateTime",
455 
456  "name" => "string",
457 
458  "autoName" => "boolean",
459 
460  "altName" => "string",
461 
462  "owner" => "RecordRef",
463 
464  "recType" => "RecordRef",
465 
466  "enableNumbering" => "boolean",
467 
468  "numberingPrefix" => "string",
469 
470  "numberingSuffix" => "string",
471 
472  "numberingMinDigits" => "integer",
473 
474  "description" => "string",
475 
476  "numberingInit" => "integer",
477 
478  "numberingCurrentNumber" => "integer",
479 
480  "allowNumberingOverride" => "boolean",
481 
482  "isNumberingUpdateable" => "boolean",
483 
484  "translationsList" => "CustomRecordTranslationsList",
485 
486  "includeName" => "boolean",
487 
488  "showId" => "boolean",
489 
490  "showCreationDate" => "boolean",
491 
492  "showCreationDateOnList" => "boolean",
493 
494  "showLastModified" => "boolean",
495 
496  "showLastModifiedOnList" => "boolean",
497 
498  "showOwner" => "boolean",
499 
500  "showOwnerOnList" => "boolean",
501 
502  "showOwnerAllowChange" => "boolean",
503 
504  "usePermissions" => "boolean",
505 
506  "allowAttachments" => "boolean",
507 
508  "showNotes" => "boolean",
509 
510  "enablEmailMerge" => "boolean",
511 
512  "isOrdered" => "boolean",
513 
514  "allowInlineEditing" => "boolean",
515 
516  "isAvailableOffline" => "boolean",
517 
518  "allowQuickSearch" => "boolean",
519 
520  "recordName" => "string",
521 
522  "scriptId" => "string",
523 
524  "customFieldList" => "CustomFieldList",
525 
526  "internalId" => "string",
527 
528  "externalId" => "string",
529 
530  );
531 
532 }
static $paramtypesmap
Definition: Record.php:8