Request body for updating an entry.

interface IUpdateEntryRequest {
    autoRename?: boolean;
    name?: string;
    parentId?: number;
}

Implemented by

Properties

autoRename?: boolean

Indicates if the entry should be automatically renamed if an entry already exists with the given name in the folder. The default value is false.

name?: string

The name that will be assigned to the entry.

parentId?: number

The ID of the parent entry that the entry will be moved to.