@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 472 B
TypeScript
import { LicenseStatusEnum } from './LicenseStatusEnum';
/** HYCU license State */
export interface State {
/** The latest comment or error message */
comment: string;
/** The HYCU controller ID for this license */
controllerId: string;
/** The license expiration date */
expirationDate: string;
/** The license status */
licenseStatus: LicenseStatusEnum;
/** License ID */
serviceName: string;
}
//# sourceMappingURL=State.d.ts.map