The records management properties of a record folder (RecordType = RecordFolder). Adds the record-folder-only members to the common RecordsManagementProperties shape.

interface IRecordFolderProperties {
    activeDispositionScheduleId?: number;
    cutoffCriterionId?: number;
    cutoffDate?: Date;
    cutoffEligibility?: Date;
    dispositionAuthority?: string;
    dispositionConfirmationDate?: Date;
    dispositionScheduleId?: number;
    dispositionState?: LfRepositoryClientV2.DispositionState;
    filingDate?: Date;
    finalDispositionEligibility?: Date;
    isClosed?: boolean;
    isCutoff?: boolean;
    isEligibleForCutoff?: boolean;
    isEligibleForFinalDisposition?: boolean;
    isPermanent?: boolean;
    locationId?: number;
    recordType?: LfRepositoryClientV2.RecordEntryType;
    reviewCycleId?: number;
    reviewInterval?: number;
    reviewIntervalUnit?: LfRepositoryClientV2.ReviewIntervalUnit;
    transferDates?: LfRepositoryClientV2.RecordsManagementTransferDate[];
    triggerDate?: Date;
}

Hierarchy (View Summary)

Implemented by

Properties

activeDispositionScheduleId?: number

The disposition schedule currently governing the entry (own or inherited), or null. Computed (read-only).

cutoffCriterionId?: number

The cutoff criterion assigned to the entry, or null when none.

cutoffDate?: Date

The date the entry was cut off, or null if not cut off. Computed (read-only).

cutoffEligibility?: Date

The date the entry becomes eligible for cutoff, or null. Computed (read-only).

dispositionAuthority?: string

The disposition authority name, or null.

dispositionConfirmationDate?: Date

The date final disposition was confirmed, or null. Computed (read-only).

dispositionScheduleId?: number

The disposition schedule assigned to the entry, or null when none.

The current lifecycle state. Computed (read-only).

filingDate?: Date

The filing date, or null when unset.

finalDispositionEligibility?: Date

The date the entry becomes eligible for final disposition, or null. Computed (read-only).

isClosed?: boolean

True when the record folder is closed to new filings.

isCutoff?: boolean

True when the entry has been cut off. Computed (read-only).

isEligibleForCutoff?: boolean

True when the entry is currently eligible for cutoff. Computed (read-only).

isEligibleForFinalDisposition?: boolean

True when the entry is currently eligible for final disposition. Computed (read-only).

isPermanent?: boolean

True when the record folder is permanent (never destroyed).

locationId?: number

The records management location the entry currently resides at, or null. Computed (read-only).

Whether these properties describe a document record or a record folder. Determines the concrete subtype (RecordProperties or RecordFolderProperties) and which type-specific members are present.

reviewCycleId?: number

The vital-record review cycle (calendar cycle) id, or null.

reviewInterval?: number

The vital-record review interval, or null.

The review interval unit.

Projected and completed interim transfers. Computed (read-only).

triggerDate?: Date

The alternate-retention trigger date, or null when unset.