emailengine-client
Version:
A TypeScript client for the EmailEngine API
29 lines (28 loc) • 801 B
TypeScript
import { Options } from "../../../../misc/Options";
export declare class FlushAccountOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string;
/**
* Account Details
*/
'body': {
/**
* Only flush the account if true
*/
'flush': boolean;
/**
* Send webhooks for messages starting from provided date. The default is the account creation date.
*/
'notifyFrom': string;
/**
* Sync messages to document store starting from provided date. If not set, all emails are synced.
*/
'syncFrom': string;
};
}