/** * 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 InboxPlacementTestRunDto */ export interface InboxPlacementTestRunDto { /** * * @type {string} * @memberof InboxPlacementTestRunDto */ id: string; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ remoteTestId: string; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ mode?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ status?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ reportStatus?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ requestedSegment?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ seedlistProfile?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ senderDomain?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ fromEmail?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ subjectHint?: string | null; /** * * @type {string} * @memberof InboxPlacementTestRunDto */ trackingToken?: string | null; /** * * @type {Array} * @memberof InboxPlacementTestRunDto */ seedAddresses: Array; /** * * @type {{ [key: string]: string; }} * @memberof InboxPlacementTestRunDto */ seedAddressFormats: { [key: string]: string; }; /** * * @type {number} * @memberof InboxPlacementTestRunDto */ totalTargets: number; /** * * @type {number} * @memberof InboxPlacementTestRunDto */ matchedTargets: number; /** * * @type {number} * @memberof InboxPlacementTestRunDto */ inboxTargets: number; /** * * @type {number} * @memberof InboxPlacementTestRunDto */ spamTargets: number; /** * * @type {number} * @memberof InboxPlacementTestRunDto */ notReceivedTargets: number; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ startedAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ firstMatchAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ completedAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ expiresAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ lastEventAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ lastSyncedAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ billedAt?: Date | null; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ createdAt: Date; /** * * @type {Date} * @memberof InboxPlacementTestRunDto */ updatedAt: Date; } export declare function InboxPlacementTestRunDtoFromJSON(json: any): InboxPlacementTestRunDto; export declare function InboxPlacementTestRunDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): InboxPlacementTestRunDto; export declare function InboxPlacementTestRunDtoToJSON(value?: InboxPlacementTestRunDto | null): any;