emailengine-client
Version:
A TypeScript client for the EmailEngine API
19 lines (18 loc) • 486 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Lists all available mailboxes
*/
export declare class ListMailboxesOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string;
/**
* If true, then includes message counters in the response
*/
'counters'?: boolean | undefined;
}