export interface EngagementThroughPredictionsMeta { from_date: string; game_type: string; to_date: string; } export interface EngagementThroughPredictionsData { breakdown: EngagementThroughPredictionsBreakdown; total: { all_users: number; }; } export interface PredictionsBreakdown { at_least_one: { percent: string; users_count: number; }; at_least_three: { percent: string; users_count: number; }; at_least_five: { percent: string; users_count: number; }; } export interface EngagementThroughPredictionsBreakdown { predictions: PredictionsBreakdown; } export default class EngagementThroughPredictions { meta: EngagementThroughPredictionsMeta; data: EngagementThroughPredictionsData; }