import { Price } from '../order/Price';
import { ResiliationReasonEnum } from './ResiliationReasonEnum';
/** Show the resiliation terms */
export interface ResiliationTerms {
    /** Price with it's currency and textual representation */
    due: Price;
    /** Date until which the customer is engaged */
    engageDate?: string;
    /** Minumum resiliationDate */
    minResiliationDate: string;
    /** Date at which the access will be resiliated */
    resiliationDate: string;
    /** List of available resiliation reasons */
    resiliationReasons: ResiliationReasonEnum[];
}
//# sourceMappingURL=ResiliationTerms.d.ts.map