UNPKG

mailinator-client

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