Interface IObjectMoveEventPayload

The object (file or folder) move event payload interface.

interface IObjectMoveEventPayload {
    name: string;
    oldName: string;
    oldPath: string;
    oldPathName: string;
    path: string;
    pathName: string;
}

Properties

name: string

The name of the object.

oldName: string

The old name of the object.

oldPath: string

The old path of the object.

oldPathName: string

The old path name of the object (a combination of the old path and the old name).

path: string

The path of the object.

pathName: string

The path name of the object (a combination of the path and the name).

Generated using TypeDoc