UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 491 B
/** Map a possible renew for a specific service */ export interface RenewType { /** The service is automatically renewed */ automatic: boolean; /** The service will be deleted at expiration */ deleteAtExpiration: boolean; /** The service forced to be renewed */ forced: boolean; /** The service needs to be manually renewed and paid */ manualPayment?: boolean; /** period of renew in month */ period?: number; } //# sourceMappingURL=RenewType.d.ts.map