UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 631 B
import { Price } from '../../order/Price'; import { ResiliationReasonEnum } from './ResiliationReasonEnum'; /** Show the resiliation terms */ export interface ResiliationTerms { /** Price due at resiliationDate */ due: Price; /** Date until which the customer is engaged */ engageDate?: string; /** Minimum date at which the pack can be resiliated */ minResiliationDate: string; /** Date at which the pack will be resiliated */ resiliationDate: string; /** List of available resiliation reasons */ resiliationReasons: ResiliationReasonEnum[]; } //# sourceMappingURL=ResiliationTerms.d.ts.map