node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 521 B
TypeScript
import { HostingWebHostedsslTypeEnum } from './HostingWebHostedsslTypeEnum.js';
import { HostingWebHostedsslStatusEnum } from './HostingWebHostedsslStatusEnum.js';
import { HostingWebHostedsslProviderEnum } from './HostingWebHostedsslProviderEnum.js';
type HostingWebSSL = {
isReportable?: boolean;
provider?: HostingWebHostedsslProviderEnum;
regenerable?: boolean;
status?: HostingWebHostedsslStatusEnum;
taskId?: number | null;
type?: HostingWebHostedsslTypeEnum;
};
export { HostingWebSSL };