emailengine-client
Version:
A TypeScript client for the EmailEngine API
16 lines (15 loc) • 396 B
TypeScript
import { Options } from "../../../../misc/Options";
export declare class DownloadAttachmentOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string;
/**
* Attachment ID
*/
'attachment': string;
}