UNPKG

paypal-rest-api

Version:

A typescript module for integrating with PayPal REST APIs.

12 lines (11 loc) 300 B
import { Schema } from "joi"; import { IApiSchemas } from "../../abstracts/api"; export interface IWebhookEventApiSchemas extends IApiSchemas { resend: Schema; simulate: Schema; verify: Schema; } export interface IWebhookSimulateRequestSchema { event_type: string; url: string; }