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