UNPKG

mailinator-client

Version:
12 lines (11 loc) 486 B
import { Request } from '../Request'; import { Message } from './Message'; import { IRestResponse } from 'typed-rest-client/RestClient'; export declare class GetInboxMessageRequest implements Request<Message> { private readonly domain; private readonly inbox; private readonly messageId; private readonly del?; constructor(domain: string, inbox: string, messageId: string, del?: string | undefined); execute(apiToken: string): Promise<IRestResponse<Message>>; }