@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
30 lines (29 loc) • 1.13 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebhookListByEncodingIdQueryParamsBuilder = void 0;
var WebhookListByEncodingIdQueryParamsBuilder = /** @class */ (function () {
function WebhookListByEncodingIdQueryParamsBuilder() {
this.internalParams = {};
}
/**
*
* @param offset Index of the first item to return, starting at 0. Default is 0
*/
WebhookListByEncodingIdQueryParamsBuilder.prototype.offset = function (offset) {
this.internalParams.offset = offset;
return this;
};
/**
*
* @param limit Maximum number of items to return. Default is 25, maximum is 100
*/
WebhookListByEncodingIdQueryParamsBuilder.prototype.limit = function (limit) {
this.internalParams.limit = limit;
return this;
};
WebhookListByEncodingIdQueryParamsBuilder.prototype.buildQueryParams = function () {
return this.internalParams;
};
return WebhookListByEncodingIdQueryParamsBuilder;
}());
exports.WebhookListByEncodingIdQueryParamsBuilder = WebhookListByEncodingIdQueryParamsBuilder;