@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
17 lines (16 loc) • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetMFWebhookServerSettings = void 0;
const MfWebhookAction_1 = require("./MfWebhookAction");
const AbstractRequest_1 = require("../AbstractRequest");
class GetMFWebhookServerSettings extends MfWebhookAction_1.MfWebhookAction {
constructor(webhookId) {
super();
this.webhookId = webhookId;
this.method = AbstractRequest_1.RequestMethod.GET;
if (webhookId) {
this.params = { id: webhookId };
}
}
}
exports.GetMFWebhookServerSettings = GetMFWebhookServerSettings;