/** * 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 { CreateDevicePreviewOptions } from './'; /** * * @export * @interface CreateDevicePreviewImportOptions */ export interface CreateDevicePreviewImportOptions { /** * Base64 encoded RFC822/MIME email contents. This should be the full raw email including headers and body, such as the bytes from an `.eml` file. * @type {string} * @memberof CreateDevicePreviewImportOptions */ rawEmailBase64: string; /** * Optional source label to attach to the preview run. * @type {string} * @memberof CreateDevicePreviewImportOptions */ sourceAlias?: string | null; /** * Optional external source ID for correlating this import with another system. * @type {string} * @memberof CreateDevicePreviewImportOptions */ externalId?: string | null; /** * * @type {CreateDevicePreviewOptions} * @memberof CreateDevicePreviewImportOptions */ options?: CreateDevicePreviewOptions | null; } export declare function CreateDevicePreviewImportOptionsFromJSON(json: any): CreateDevicePreviewImportOptions; export declare function CreateDevicePreviewImportOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDevicePreviewImportOptions; export declare function CreateDevicePreviewImportOptionsToJSON(value?: CreateDevicePreviewImportOptions | null): any;