UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

34 lines (33 loc) 860 B
import { SearchQuery } from "../../../../misc/models/SearchQuery"; import { Options } from "../../../../misc/Options"; import { MessageUpdate } from "../../../../misc/models/MessageUpdate"; /** * Update message information for matching emails */ export declare class UpdateMultiMessagesOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Account ID */ 'account': string; /** * Mailbox folder path */ 'path': string; /** * Update Multi Messages Options Details */ 'body': { /** * Search query to filter messages */ search: SearchQuery; /** * Message update details */ update: MessageUpdate; }; }