UNPKG

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

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 370 B
import { MappingAction } from "./MappingAction"; import { RequestMethod } from "../../AbstractRequest"; export class UpdateGenerateMapping extends MappingAction { constructor(payload) { super(payload.context, payload.repository); this.customPath = "/generate-mapping"; this.method = RequestMethod.PUT; this.payload = payload; } }