UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

30 lines (27 loc) 1.1 kB
import { EmailExchangeSpamAndVirusConfiguration } from './EmailExchangeSpamAndVirusConfiguration.js'; import { EmailExchangeServiceOfferEnum } from './EmailExchangeServiceOfferEnum.js'; import { EmailExchangeServiceStateEnum } from './EmailExchangeServiceStateEnum.js'; type EmailExchangeExchangeService = { adfsChangePassword?: boolean; complexityEnabled?: boolean; displayName?: string | null; domain?: string; hostname?: string | null; lastUpdateDate?: Date | null; lockoutDuration?: number; lockoutObservationWindow?: number; lockoutThreshold?: number | null; maxPasswordAge?: number | null; maxReceiveSize?: number; maxSendSize?: number; minPasswordAge?: number | null; minPasswordLength?: number | null; offer?: EmailExchangeServiceOfferEnum; passwordHistoryCount?: number | null; spamAndVirusConfiguration?: EmailExchangeSpamAndVirusConfiguration; sslExpirationDate?: Date | null; state?: EmailExchangeServiceStateEnum; taskPendingId?: number; webUrl?: string | null; }; export { EmailExchangeExchangeService };