UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

20 lines (19 loc) 479 B
import { Options } from "../../../../misc/Options"; export declare class DeleteMessageOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Account ID */ 'account': string; /** * Message ID */ 'message': string; /** * Delete message even if not in Trash */ 'force'?: boolean | undefined; }