/** * 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 PublicDeviceRenderTestDto */ export interface PublicDeviceRenderTestDto { /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ id: string; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ emailAddress: string; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ status: PublicDeviceRenderTestDtoStatusEnum; /** * * @type {Date} * @memberof PublicDeviceRenderTestDto */ expiresAt: Date; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ sourceFrom?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ sourceSubject?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ senderDomain?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ runId?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ shareUrl?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ redirectUrl?: string | null; /** * * @type {boolean} * @memberof PublicDeviceRenderTestDto */ freeLimitReached: boolean; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ failureCode?: string | null; /** * * @type {string} * @memberof PublicDeviceRenderTestDto */ failureMessage?: string | null; } /** * @export * @enum {string} */ export declare enum PublicDeviceRenderTestDtoStatusEnum { WAITING_FOR_EMAIL = "WAITING_FOR_EMAIL", RECEIVED = "RECEIVED", PROCESSING = "PROCESSING", RUN_CREATED = "RUN_CREATED", RATE_LIMITED = "RATE_LIMITED", REJECTED = "REJECTED", FAILED = "FAILED", EXPIRED = "EXPIRED" } export declare function PublicDeviceRenderTestDtoFromJSON(json: any): PublicDeviceRenderTestDto; export declare function PublicDeviceRenderTestDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicDeviceRenderTestDto; export declare function PublicDeviceRenderTestDtoToJSON(value?: PublicDeviceRenderTestDto | null): any;