@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
11 lines (10 loc) • 348 B
JavaScript
import { NotificationAction } from "./NotificationAction";
import { RequestMethod } from "../AbstractRequest";
export class GetNotification extends NotificationAction {
constructor(messageId) {
super();
this.method = RequestMethod.GET;
this.messageId = messageId;
this.customPath = `/${this.messageId}`;
}
}