node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 356 B
TypeScript
import { IpLoadbalancingSslTypeEnum } from './IpLoadbalancingSslTypeEnum.js';
type IpLoadbalancingSslSsl = {
displayName?: string | null;
expireDate?: Date;
fingerprint?: string;
id?: number;
san?: string[];
serial?: string;
subject?: string;
type?: IpLoadbalancingSslTypeEnum | null;
};
export { IpLoadbalancingSslSsl };