@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 553 B
TypeScript
import { Ip } from '../../../Ip';
import { ConfigurationServiceEnum } from './ConfigurationServiceEnum';
/** HostedEmail configuration service */
export interface ConfigurationService {
/** Service host */
host: string;
/** Service IP */
ip: Ip;
/** Service port */
port: number;
/** Service name */
service: ConfigurationServiceEnum;
/** Does the service use SMTP AUTH ? */
smtpAuth?: boolean;
/** Does the service use STARTTLS ? */
startTls: boolean;
}
//# sourceMappingURL=ConfigurationService.d.ts.map