/** * 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. */ /** * * @export * @interface DomainMonitorRunDto */ export interface DomainMonitorRunDto { /** * * @type {string} * @memberof DomainMonitorRunDto */ id: string; /** * * @type {string} * @memberof DomainMonitorRunDto */ monitorId: string; /** * * @type {string} * @memberof DomainMonitorRunDto */ userId: string; /** * * @type {string} * @memberof DomainMonitorRunDto */ domain: string; /** * * @type {string} * @memberof DomainMonitorRunDto */ status: DomainMonitorRunDtoStatusEnum; /** * * @type {string} * @memberof DomainMonitorRunDto */ triggerSource: DomainMonitorRunDtoTriggerSourceEnum; /** * * @type {number} * @memberof DomainMonitorRunDto */ healthScore: number; /** * * @type {number} * @memberof DomainMonitorRunDto */ totalChecks: number; /** * * @type {number} * @memberof DomainMonitorRunDto */ passingChecks: number; /** * * @type {number} * @memberof DomainMonitorRunDto */ failingChecks: number; /** * * @type {boolean} * @memberof DomainMonitorRunDto */ spfOk: boolean; /** * * @type {boolean} * @memberof DomainMonitorRunDto */ dmarcOk: boolean; /** * * @type {boolean} * @memberof DomainMonitorRunDto */ dmarcEnforced: boolean; /** * * @type {boolean} * @memberof DomainMonitorRunDto */ mxOk: boolean; /** * * @type {Array} * @memberof DomainMonitorRunDto */ insights: Array; /** * * @type {string} * @memberof DomainMonitorRunDto */ errorMessage?: string; /** * * @type {Date} * @memberof DomainMonitorRunDto */ createdAt: Date; /** * * @type {Date} * @memberof DomainMonitorRunDto */ updatedAt: Date; } /** * @export * @enum {string} */ export declare enum DomainMonitorRunDtoStatusEnum { HEALTHY = "HEALTHY", DEGRADED = "DEGRADED", CRITICAL = "CRITICAL", FAILED = "FAILED" } /** * @export * @enum {string} */ export declare enum DomainMonitorRunDtoTriggerSourceEnum { API = "API", USER_SCHEDULE = "USER_SCHEDULE", CRON = "CRON", SCHEDULER = "SCHEDULER" } export declare function DomainMonitorRunDtoFromJSON(json: any): DomainMonitorRunDto; export declare function DomainMonitorRunDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainMonitorRunDto; export declare function DomainMonitorRunDtoToJSON(value?: DomainMonitorRunDto | null): any;