UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

22 lines (19 loc) 693 B
import { EmailExchangeServerStateEnum } from './EmailExchangeServerStateEnum.js'; import { EmailExchangeExchangeCommercialVersionEnum } from './EmailExchangeExchangeCommercialVersionEnum.js'; type EmailExchangeServer = { commercialVersion?: EmailExchangeExchangeCommercialVersionEnum; currentDiskUsage?: number | null; diskSize?: number | null; individual2010?: boolean; ip?: string; ipV6?: string | null; isAValid?: boolean; isAaaaValid?: boolean; isPtrV6Valid?: boolean; isPtrValid?: boolean; owaMfa?: boolean; state?: EmailExchangeServerStateEnum; taskPendingId?: number; version?: number | null; }; export { EmailExchangeServer };