UNPKG

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

Version:

Endevor Bridge for Git Rest client

15 lines (14 loc) 526 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GetOperation = void 0; const OperationAction_1 = require("./OperationAction"); const AbstractRequest_1 = require("../AbstractRequest"); class GetOperation extends OperationAction_1.OperationAction { constructor(operationId) { super(); this.method = AbstractRequest_1.RequestMethod.GET; this.operationId = operationId; this.customPath = `/${this.operationId}`; } } exports.GetOperation = GetOperation;