@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
13 lines (12 loc) • 382 B
JavaScript
import { MfWebhookAction } from "./MfWebhookAction";
import { RequestMethod } from "../AbstractRequest";
export class GetMFWebhookServerSettings extends MfWebhookAction {
constructor(webhookId) {
super();
this.webhookId = webhookId;
this.method = RequestMethod.GET;
if (webhookId) {
this.params = { id: webhookId };
}
}
}