Request body for creating a record series under a parent folder.

interface ICreateRecordSeriesRequest {
    autoRename?: boolean;
    code?: string;
    name?: string;
}

Implemented by

Properties

autoRename?: boolean

When true, the server appends a suffix to the name on a naming conflict instead of failing.

code?: string

The record series code.

name?: string

The name of the new record series.