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