UNPKG

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

Version:

Endevor Bridge for Git Rest client

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