/** Savings Plan subscription */
export interface Subscribe {
    /** Custom display name, used in invoices */
    displayName: string;
    /** Identifier of the Savings Plan commercial offer */
    offerId: string;
    /** Size of the Savings Plan */
    size: number;
    /** Start date of the savings plan */
    startDate: string;
}
//# sourceMappingURL=Subscribe.d.ts.map