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