UNPKG

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

Version:

Endevor Bridge for Git Rest client

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