import { PeriodEndActionEnum } from './PeriodEndActionEnum';
import { StatusEnum } from './StatusEnum';
/** Simulated Savings Plan subscribed */
export interface SimulatedSavingsPlan {
    /** Custom display name, used in invoices */
    displayName: string;
    /** End date of the Savings Plan */
    endDate: string;
    /** Savings Plan flavor */
    flavor: string;
    /** Savings Plan commercial offer identifier */
    offerId: string;
    /** Periodicity of the Savings Plan */
    period: string;
    /** Action performed when reaching the end of the period */
    periodEndAction: PeriodEndActionEnum;
    /** End date of the current period */
    periodEndDate: string;
    /** Start date of the current period */
    periodStartDate: string;
    /** Size of the Savings Plan */
    size: number;
    /** Start date of the Savings Plan */
    startDate: string;
    /** Status of the Savings Plan */
    status: StatusEnum;
}
//# sourceMappingURL=SimulatedSavingsPlan.d.ts.map