UNPKG

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

Version:

Endevor Bridge for Git Rest client

12 lines (11 loc) 364 B
import { UserAction } from "./UserAction"; import { RequestMethod } from "../../AbstractRequest"; export class DeleteGitAccounts extends UserAction { constructor(providerId) { super(); this.method = RequestMethod.DELETE; this.customPath = "/accounts"; this.providerId = providerId; this.params = { providerId }; } }