@ctrl/qbittorrent
    Preparing search index...

    Interface TorrentCreatorTaskStatus

    interface TorrentCreatorTaskStatus {
        comment?: string;
        errorMessage?: string;
        format?: "v1" | "v2" | "hybrid";
        ignoreDotfiles?: boolean;
        optimizeAlignment?: boolean;
        paddedFileSizeLimit?: number;
        pieceSize: number;
        private: boolean;
        progress?: number;
        source?: string;
        sourcePath: string;
        status: TorrentCreatorTaskStatusState;
        taskID: string;
        timeAdded: number;
        timeFinished?: number;
        timeStarted?: number;
        torrentFilePath?: string;
        trackers?: string[];
        urlSeeds?: string[];
    }
    Index

    Properties

    comment?: string
    errorMessage?: string
    format?: "v1" | "v2" | "hybrid"
    ignoreDotfiles?: boolean

    Whether dotfiles were ignored while creating the torrent. Added in qBittorrent WebUI API v2.16.0 https://github.com/qbittorrent/qBittorrent/pull/24346

    optimizeAlignment?: boolean
    paddedFileSizeLimit?: number
    pieceSize: number
    private: boolean
    progress?: number
    source?: string
    sourcePath: string
    taskID: string
    timeAdded: number

    Unix timestamp for when the task was added. Changed to a Unix timestamp in qBittorrent WebUI API v2.16.0 https://github.com/qbittorrent/qBittorrent/pull/24210

    timeFinished?: number

    Unix timestamp for when the task finished. Changed to a Unix timestamp in qBittorrent WebUI API v2.16.0 https://github.com/qbittorrent/qBittorrent/pull/24210

    timeStarted?: number

    Unix timestamp for when the task started. Changed to a Unix timestamp in qBittorrent WebUI API v2.16.0 https://github.com/qbittorrent/qBittorrent/pull/24210

    torrentFilePath?: string
    trackers?: string[]
    urlSeeds?: string[]