paypal-rest-api
Version:
A typescript module for integrating with PayPal REST APIs.
19 lines (18 loc) • 585 B
TypeScript
import { Api } from "../abstracts";
import { Client, RequestOptions } from "../client";
import { IWebhookRequestSchemas } from "./types";
export declare class WebhookApi extends Api {
static paths: {
create: string;
delete: string;
events: string;
get: string;
list: string;
types: string;
update: string;
};
static schemas: IWebhookRequestSchemas;
constructor(client: Client);
events(id: string, options?: Partial<RequestOptions>): Promise<any>;
types(options?: Partial<RequestOptions>): Promise<any>;
}