mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
11 lines (10 loc) • 471 B
TypeScript
import { Request } from '../Request';
import { IRestResponse } from "typed-rest-client/RestClient";
import { IncomingMessage } from "http";
export declare class GetMessageAttachmentRequest implements Request<IncomingMessage> {
private readonly domain;
private readonly messageId;
private readonly attachmentId;
constructor(domain: string, messageId: string, attachmentId: number);
execute(apiToken: string): Promise<IRestResponse<IncomingMessage>>;
}