UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

24 lines (23 loc) 535 B
import { Options } from "../../../../misc/Options"; /** * Initiate a delivery test */ export declare class CreateDeliveryTestOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Account ID */ 'account': string; /** * Create Delivery Test Details */ 'body': { /** * Optional gateway ID */ gateway?: string | undefined; }; }