UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

28 lines (27 loc) 720 B
import { Options } from "../../../../misc/Options"; export declare class GetMessagesOptions 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; /** * Page number (zero indexed, so use 0 for first page) */ 'page'?: number | undefined; /** * How many entries per page */ 'pageSize'?: number | undefined; /** * If enabled then fetch the data from the Document Store instead of IMAP */ 'documentStore'?: boolean | undefined; }