UNPKG

mailinator-client

Version:
12 lines (11 loc) 625 B
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>>; }