UNPKG

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

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 308 B
import { UserAction } from "./UserAction"; import { RequestMethod } from "../../AbstractRequest"; export class UpdateUserRoles extends UserAction { constructor(payload) { super(); this.customPath = "/role"; this.method = RequestMethod.PUT; this.payload = payload; } }