UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 514 B
import { StateEnum } from '../StateEnum'; /** Your Hycu license */ export interface Hycu { /** This license creation date */ creation: string; /** Shall we delete this on expiration ? */ deleteAtExpiration: boolean; /** The internal name of your license */ domain: string; /** The Hycu license file */ license: string; /** The license id on license provider side */ licenseId: string; /** This license state */ status: StateEnum; } //# sourceMappingURL=Hycu.d.ts.map