/** * 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 DevicePreviewIngestAddressDto */ export interface DevicePreviewIngestAddressDto { /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ sessionId: string; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ emailAddress: string; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ status: DevicePreviewIngestAddressDtoStatusEnum; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ runId?: string | null; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ sourceFrom?: string | null; /** * * @type {Array} * @memberof DevicePreviewIngestAddressDto */ sourceTo?: Array | null; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ sourceSubject?: string | null; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ sourceMessageId?: string | null; /** * * @type {number} * @memberof DevicePreviewIngestAddressDto */ sourceSizeBytes?: number | null; /** * * @type {string} * @memberof DevicePreviewIngestAddressDto */ latestError?: string | null; /** * * @type {Date} * @memberof DevicePreviewIngestAddressDto */ expiresAt: Date; /** * * @type {Date} * @memberof DevicePreviewIngestAddressDto */ createdAt: Date; /** * * @type {Date} * @memberof DevicePreviewIngestAddressDto */ updatedAt: Date; } /** * @export * @enum {string} */ export declare enum DevicePreviewIngestAddressDtoStatusEnum { WAITING_FOR_EMAIL = "WAITING_FOR_EMAIL", RUN_CREATED = "RUN_CREATED", EXPIRED = "EXPIRED", FAILED = "FAILED" } export declare function DevicePreviewIngestAddressDtoFromJSON(json: any): DevicePreviewIngestAddressDto; export declare function DevicePreviewIngestAddressDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePreviewIngestAddressDto; export declare function DevicePreviewIngestAddressDtoToJSON(value?: DevicePreviewIngestAddressDto | null): any;