UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

38 lines (37 loc) 841 B
import { Options } from "../../../../misc/Options"; /** * Updates gateway information */ export declare class UpdatesGatewayInfoOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Gateway ID */ 'gateway': string; /** * Update Gateway Information Details */ 'body': { /** * Account Name */ name?: string; user?: string; pass?: string; /** * Hostname to connect to */ host?: string; /** * Service port number */ port?: number; /** * Should connection use TLS. Usually true for port 465 */ secure?: boolean; }; }