@hyperse/paypal-node-sdk
Version:
NodeJS SDK for PayPal Checkout APIs
11 lines (10 loc) • 395 B
TypeScript
import { HttpRequestBase } from '../core/HttpRequestBase.js';
import { type BaseWebhookHeaders } from '../types/type-webhook.js';
/**
* Delete webhook, Deletes a webhook, by ID.
* @see {@link https://developer.paypal.com/docs/api/webhooks/v1/#webhooks_delete}
*
*/
export declare class WebhookDeleteRequest extends HttpRequestBase<BaseWebhookHeaders> {
constructor(webhookId: string);
}