@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
15 lines (14 loc) • 555 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateGlobalGenerateSettings = void 0;
const AbstractRequest_1 = require("../AbstractRequest");
const GlobalAction_1 = require("./GlobalAction");
class UpdateGlobalGenerateSettings extends GlobalAction_1.GlobalAction {
constructor(payload) {
super();
this.customPath = "/generate";
this.method = AbstractRequest_1.RequestMethod.PUT;
this.payload = payload;
}
}
exports.UpdateGlobalGenerateSettings = UpdateGlobalGenerateSettings;