@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
38 lines (37 loc) • 1.45 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DailyStatisticsPerLabelListQueryParamsBuilder = void 0;
var DailyStatisticsPerLabelListQueryParamsBuilder = /** @class */ (function () {
function DailyStatisticsPerLabelListQueryParamsBuilder() {
this.internalParams = {};
}
/**
*
* @param offset Index of the first item to return, starting at 0. Default is 0
*/
DailyStatisticsPerLabelListQueryParamsBuilder.prototype.offset = function (offset) {
this.internalParams.offset = offset;
return this;
};
/**
*
* @param limit Maximum number of items to return. Default is 25, maximum is 100
*/
DailyStatisticsPerLabelListQueryParamsBuilder.prototype.limit = function (limit) {
this.internalParams.limit = limit;
return this;
};
/**
*
* @param labels Comma separated list of labels. Filter results to only show the ones specified
*/
DailyStatisticsPerLabelListQueryParamsBuilder.prototype.labels = function (labels) {
this.internalParams.labels = labels;
return this;
};
DailyStatisticsPerLabelListQueryParamsBuilder.prototype.buildQueryParams = function () {
return this.internalParams;
};
return DailyStatisticsPerLabelListQueryParamsBuilder;
}());
exports.DailyStatisticsPerLabelListQueryParamsBuilder = DailyStatisticsPerLabelListQueryParamsBuilder;