/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for testing SMTP credentials */ export type TestSMTPCredentials = { /** * SMTP server hostname */ smtp_host: string; /** * SMTP server port */ smtp_port: number; /** * SMTP username */ smtp_username: string; /** * SMTP password */ smtp_password: string; /** * Use TLS encryption */ use_tls?: boolean; /** * Use SSL encryption */ use_ssl?: boolean; /** * Email address to send test email to */ test_email: string; /** * From email address (optional) */ from_email?: string; };