@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
11 lines (10 loc) • 352 B
JavaScript
import { OperationAction } from "./OperationAction";
import { RequestMethod } from "../AbstractRequest";
export class DropOperation extends OperationAction {
constructor(operationId) {
super();
this.method = RequestMethod.PATCH;
this.operationId = operationId;
this.customPath = `/${this.operationId}/drop`;
}
}