emailengine-client
Version:
A TypeScript client for the EmailEngine API
21 lines (20 loc) • 537 B
TypeScript
import { MessageUpdate } from "../../../../misc/models/MessageUpdate";
import { Options } from "../../../../misc/Options";
export declare class UpdateMessageOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string;
/**
* Message ID
*/
'message': string;
/**
* Update Message Options Details
*/
'body': MessageUpdate;
}