Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface ICollectionInstallSession

    Overall collection installation session information

    interface ICollectionInstallSession {
        collectionId: string;
        downloadedCount: number;
        failedCount: number;
        gameId: string;
        installedCount: number;
        mods: { [ruleId: string]: ICollectionModInstallInfo };
        profileId: string;
        sessionId: string;
        skippedCount: number;
        totalOptional: number;
        totalRequired: number;
    }
    Index

    Properties

    collectionId: string

    The collection mod being installed

    downloadedCount: number

    Number of mods successfully downloaded

    failedCount: number

    Number of mods that failed to install

    gameId: string

    Game ID

    installedCount: number

    Number of mods successfully installed

    mods: { [ruleId: string]: ICollectionModInstallInfo }

    Map of mod rule IDs to their installation info

    profileId: string

    Profile ID where collection is being installed

    sessionId: string

    Unique session ID

    skippedCount: number

    Number of optional mods skipped

    totalOptional: number

    Total number of optional mods

    totalRequired: number

    Total number of required mods