/** Consumption period for a flavor */
export interface PlanPeriod {
    /** Begin date of the period */
    begin: string;
    /** Size of the plan consumed */
    consumptionSize: number;
    /** Human readable percentage of usages covered by the plan */
    coverage: string;
    /** Size of all plans combined */
    cumulPlanSize: number;
    /** End date of the period */
    end: string;
    /** List of plans Ids */
    plansIds: string[];
    /** List of ressources that could be covered by this plan */
    resourceIds: string[];
    /** Human readable percentage of the savings plan utilization */
    utilization: string;
}
//# sourceMappingURL=PlanPeriod.d.ts.map