UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 689 B
import { Ipv4 } from '../../Ipv4'; import { StateEnum } from '../StateEnum'; import { CpanelVersionEnum } from '../CpanelVersionEnum'; /** Your Cpanel license */ export interface Cpanel { /** This license creation date */ creation: string; /** Shall we delete this on expiration ? */ deleteAtExpiration: boolean; /** The internal name of your license */ domain: string; /** The ip on which this license is attached */ ip: Ipv4; /** The license id on license provider side */ licenseId: string; /** This license state */ status: StateEnum; /** This license version */ version: CpanelVersionEnum; } //# sourceMappingURL=Cpanel.d.ts.map