/** * 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. */ /** * One-shot public domain monitor check results * @export * @interface CheckDomainMonitorResults */ export interface CheckDomainMonitorResults { /** * * @type {string} * @memberof CheckDomainMonitorResults */ domain: string; /** * * @type {string} * @memberof CheckDomainMonitorResults */ status: CheckDomainMonitorResultsStatusEnum; /** * * @type {number} * @memberof CheckDomainMonitorResults */ healthScore: number; /** * * @type {number} * @memberof CheckDomainMonitorResults */ totalChecks: number; /** * * @type {number} * @memberof CheckDomainMonitorResults */ passingChecks: number; /** * * @type {number} * @memberof CheckDomainMonitorResults */ failingChecks: number; /** * * @type {boolean} * @memberof CheckDomainMonitorResults */ spfOk: boolean; /** * * @type {boolean} * @memberof CheckDomainMonitorResults */ dmarcOk: boolean; /** * * @type {boolean} * @memberof CheckDomainMonitorResults */ dmarcEnforced: boolean; /** * * @type {boolean} * @memberof CheckDomainMonitorResults */ mxOk: boolean; /** * * @type {Array} * @memberof CheckDomainMonitorResults */ insights: Array; /** * * @type {string} * @memberof CheckDomainMonitorResults */ errorMessage?: string | null; } /** * @export * @enum {string} */ export declare enum CheckDomainMonitorResultsStatusEnum { HEALTHY = "HEALTHY", DEGRADED = "DEGRADED", CRITICAL = "CRITICAL", FAILED = "FAILED" } export declare function CheckDomainMonitorResultsFromJSON(json: any): CheckDomainMonitorResults; export declare function CheckDomainMonitorResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckDomainMonitorResults; export declare function CheckDomainMonitorResultsToJSON(value?: CheckDomainMonitorResults | null): any;