Interface characterInstanceExpansionItem

interface characterInstanceExpansionItem {
    expansion: refStruct;
    instances: {
        instance: refStruct;
        modes: {
            difficulty: { name: string; type: string };
            progress: {
                completed_count: number;
                encounters: {
                    completed_count: number;
                    encounter: refStruct;
                    last_kill_timestamp: number;
                }[];
                total_count: number;
            };
            status: { name: string; type: string };
        };
    }[];
}

Properties

Properties

expansion: refStruct
instances: {
    instance: refStruct;
    modes: {
        difficulty: { name: string; type: string };
        progress: {
            completed_count: number;
            encounters: {
                completed_count: number;
                encounter: refStruct;
                last_kill_timestamp: number;
            }[];
            total_count: number;
        };
        status: { name: string; type: string };
    };
}[]