/** * MailSlurp API * MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. 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://www.mailslurp.com/docs/) - [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. */ /** * Sent email details * @export * @interface SentEmailDto */ export interface SentEmailDto { /** * ID of sent email * @type {string} * @memberof SentEmailDto */ id: string; /** * User ID * @type {string} * @memberof SentEmailDto */ userId: string; /** * Inbox ID email was sent from * @type {string} * @memberof SentEmailDto */ inboxId: string; /** * Recipients email was sent to * @type {Array} * @memberof SentEmailDto */ to?: Array; /** * * @type {string} * @memberof SentEmailDto */ from?: string; /** * * @type {string} * @memberof SentEmailDto */ replyTo?: string; /** * * @type {Array} * @memberof SentEmailDto */ cc?: Array; /** * * @type {Array} * @memberof SentEmailDto */ bcc?: Array; /** * Array of IDs of attachments that were sent with this email * @type {Array} * @memberof SentEmailDto */ attachments?: Array; /** * * @type {string} * @memberof SentEmailDto */ subject?: string; /** * MD5 Hash * @type {string} * @memberof SentEmailDto */ bodyMD5Hash?: string; /** * * @type {string} * @memberof SentEmailDto */ body?: string; /** * * @type {string} * @memberof SentEmailDto */ charset?: string; /** * * @type {boolean} * @memberof SentEmailDto */ isHTML?: boolean; /** * * @type {Date} * @memberof SentEmailDto */ sentAt: Date; /** * * @type {Array} * @memberof SentEmailDto */ pixelIds?: Array; } export declare function SentEmailDtoFromJSON(json: any): SentEmailDto; export declare function SentEmailDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SentEmailDto; export declare function SentEmailDtoToJSON(value?: SentEmailDto | null): any;