/** * MailSlurp API * MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository * * The version of the OpenAPI document: 6.5.2 * Contact: contact@mailslurp.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EmailIntelligenceScoreBreakdownDto, EmailIntelligenceSignalsDto } from './'; /** * Email intelligence result for a single input. * @export * @interface EmailIntelligenceResultDto */ export interface EmailIntelligenceResultDto { /** * Original input value before normalization. * @type {string} * @memberof EmailIntelligenceResultDto */ input: string; /** * Score from 0 to 100 where higher is better. * @type {number} * @memberof EmailIntelligenceResultDto */ totalScore: number; /** * * @type {EmailIntelligenceScoreBreakdownDto} * @memberof EmailIntelligenceResultDto */ scoreBreakdown: EmailIntelligenceScoreBreakdownDto; /** * * @type {EmailIntelligenceSignalsDto} * @memberof EmailIntelligenceResultDto */ signals: EmailIntelligenceSignalsDto; } export declare function EmailIntelligenceResultDtoFromJSON(json: any): EmailIntelligenceResultDto; export declare function EmailIntelligenceResultDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailIntelligenceResultDto; export declare function EmailIntelligenceResultDtoToJSON(value?: EmailIntelligenceResultDto | null): any;