UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 338 B
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; } }