Represents a hot folder object interface with methods to manage hot folders.

interface HotFolderObject {
    GetHotFolderById: ((id: number) => FileDirectory);
}

Properties

Properties

GetHotFolderById: ((id: number) => FileDirectory)

Retrieves the hot folder by its identifier.

Type declaration

    • (id): FileDirectory
    • Parameters

      • id: number

        The identifier of the hot folder.

      Returns FileDirectory

      An object representing the hot folder directory if found, otherwise null.