import { StatusEnum } from '../StatusEnum';
/** Savings Plan Period history */
export interface Period {
    /** Unique identifier of the Period */
    id: string;
    /** Savings Plan commercial offer identifier */
    offerId: string;
    /** End date of the Period */
    periodEndDate: string;
    /** Start date of the Period */
    periodStartDate: string;
    /** Unique identifier of the Savings Plan */
    savingsPlanId: string;
    /** Size of the Savings Plan during the period */
    size: number;
    /** Status of the Period */
    status: StatusEnum;
    /** Savings Plan commercial offer unit price */
    unitPrice: number;
}
//# sourceMappingURL=Period.d.ts.map