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