UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

38 lines (37 loc) 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GenericS3OutputListQueryParamsBuilder = void 0; var GenericS3OutputListQueryParamsBuilder = /** @class */ (function () { function GenericS3OutputListQueryParamsBuilder() { this.internalParams = {}; } /** * * @param offset Index of the first item to return, starting at 0. Default is 0 */ GenericS3OutputListQueryParamsBuilder.prototype.offset = function (offset) { this.internalParams.offset = offset; return this; }; /** * * @param limit Maximum number of items to return. Default is 25, maximum is 100 */ GenericS3OutputListQueryParamsBuilder.prototype.limit = function (limit) { this.internalParams.limit = limit; return this; }; /** * * @param name Filter output by name */ GenericS3OutputListQueryParamsBuilder.prototype.name = function (name) { this.internalParams.name = name; return this; }; GenericS3OutputListQueryParamsBuilder.prototype.buildQueryParams = function () { return this.internalParams; }; return GenericS3OutputListQueryParamsBuilder; }()); exports.GenericS3OutputListQueryParamsBuilder = GenericS3OutputListQueryParamsBuilder;