UNPKG

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

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 322 B
import { GlobalAction } from "../GlobalAction"; import { RequestMethod } from "../../AbstractRequest"; export class UpdateGlobalWebhook extends GlobalAction { constructor(payload) { super(); this.customPath = "/webhook"; this.method = RequestMethod.PUT; this.payload = payload; } }