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