mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
12 lines (11 loc) • 636 B
TypeScript
import { RequestWithoutToken } from '../RequestWithoutToken';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Webhook } from './Webhook';
import { CustomServiceWebhookResponseStatus } from './CustomServiceWebhookResponseStatus';
export declare class PublicCustomServiceInboxWebhookRequest implements RequestWithoutToken<CustomServiceWebhookResponseStatus> {
private readonly customService;
private readonly inbox;
private readonly webhook;
constructor(customService: string, inbox: string, webhook: Webhook);
execute(): Promise<IRestResponse<CustomServiceWebhookResponseStatus>>;
}