/** * 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 CreateDevicePreviewHtmlImportOptions */ export interface CreateDevicePreviewHtmlImportOptions { /** * HTML body to wrap into a minimal RFC822/MIME message before creating the device preview run. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ html: string; /** * Optional email subject for the generated MIME. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ subject?: string | null; /** * Optional From address for the generated MIME. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ from?: string | null; /** * Optional To address for the generated MIME. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ to?: string | null; /** * Optional source label to attach to the preview run. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ sourceAlias?: string | null; /** * Optional external source ID for correlating this import with another system. * @type {string} * @memberof CreateDevicePreviewHtmlImportOptions */ externalId?: string | null; /** * * @type {CreateDevicePreviewOptions} * @memberof CreateDevicePreviewHtmlImportOptions */ options?: CreateDevicePreviewOptions | null; } export declare function CreateDevicePreviewHtmlImportOptionsFromJSON(json: any): CreateDevicePreviewHtmlImportOptions; export declare function CreateDevicePreviewHtmlImportOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDevicePreviewHtmlImportOptions; export declare function CreateDevicePreviewHtmlImportOptionsToJSON(value?: CreateDevicePreviewHtmlImportOptions | null): any;