@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
11 lines (10 loc) • 328 B
JavaScript
import { RequestMethod } from "../AbstractRequest";
import { GlobalAction } from "./GlobalAction";
export class UpdateGlobalGenerateSettings extends GlobalAction {
constructor(payload) {
super();
this.customPath = "/generate";
this.method = RequestMethod.PUT;
this.payload = payload;
}
}