A record series' retention defaults. A record series provides cascading defaults (cutoff criterion, disposition schedule, review cycle, permanence, disposition authority) that the record folders and records beneath it resolve against.

interface IRecordSeriesProperties {
    code?: string;
    cutoffCriterionId?: number;
    dispositionAuthority?: string;
    dispositionScheduleId?: number;
    isPermanent?: boolean;
    reviewCycleId?: number;
    reviewInterval?: number;
    reviewIntervalUnit?: ReviewIntervalUnit;
}

Implemented by

Properties

code?: string

The record series code.

cutoffCriterionId?: number

The default cutoff criterion id, or null when none.

dispositionAuthority?: string

The disposition authority name, or null.

dispositionScheduleId?: number

The default disposition schedule id, or null when none.

isPermanent?: boolean

True when records under the series are permanent (never destroyed).

reviewCycleId?: number

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

reviewInterval?: number

The default vital-record review interval, or null when none.

reviewIntervalUnit?: ReviewIntervalUnit

The default review interval unit.