UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

13 lines (12 loc) 388 B
import { MfWebhookAction } from "./MfWebhookAction"; import { RequestMethod } from "../AbstractRequest"; export class DeleteMFWebhookServerSettings extends MfWebhookAction { constructor(webhookId) { super(); this.webhookId = webhookId; this.method = RequestMethod.DELETE; if (webhookId) { this.params = { id: webhookId }; } } }