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