UNPKG

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

Version:

Endevor Bridge for Git Rest client

16 lines (15 loc) 565 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GetAllNotifications = void 0; const NotificationAction_1 = require("./NotificationAction"); const AbstractRequest_1 = require("../AbstractRequest"); class GetAllNotifications extends NotificationAction_1.NotificationAction { constructor(size, page) { super(); this.method = AbstractRequest_1.RequestMethod.GET; this.size = size; this.page = page; this.params = { size, page }; } } exports.GetAllNotifications = GetAllNotifications;