diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 691 B
JavaScript
;
/**
* @module Services.LogRetrieval
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntriesFetchRequest = void 0;
/**
* Data type for a FETCH_LOG_ENTRIES_SERVICE request.
*/
var EntriesFetchRequest = /** @class */ (function () {
/**
* Create a new EntriesFetchRequest instance
*
* @param firstEntry the first log entry to fetch
* @param entryCount the number of log entries to fetch
*/
function EntriesFetchRequest(firstEntry, entryCount) {
this.firstEntry = firstEntry;
this.entryCount = entryCount;
}
return EntriesFetchRequest;
}());
exports.EntriesFetchRequest = EntriesFetchRequest;