emailengine-client
Version:
A TypeScript client for the EmailEngine API
28 lines (27 loc) • 806 B
TypeScript
import { Options } from "../../../../misc/Options";
export declare class GetMessageTextOptions 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 text ID
*/
'text': string;
/**
* Max length of text content. This setting is ignored if documentStore is true.
*/
'maxBytes'?: number | undefined;
/**
* Which text content to return, use * for all. By default all contents are returned.
*/
'textType'?: string | undefined;
/**
* If enabled then fetch the data from the Document Store instead of IMAP
*/
'documentStore'?: boolean | undefined;
}