import { Fees } from './Fees';
import { PlanPeriod } from './PlanPeriod';
import { Subscription } from './Subscription';
/** Consumption details by flavor */
export interface Flavor {
    /** Fees associated to the plans for this flavor */
    fees: Fees;
    /** The flavor for the plans */
    flavor: string;
    /** Listing of all periods concerning this flavor saving plans : every change in usage or plans will make a new period */
    periods: PlanPeriod[];
    /** List of existing plan subscriptions for the flavor */
    subscriptions: Subscription[];
}
//# sourceMappingURL=Flavor.d.ts.map