UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

29 lines (28 loc) 836 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ScheduledInsertableContentListQueryParamsBuilder = void 0; class ScheduledInsertableContentListQueryParamsBuilder { 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; } buildQueryParams() { return this.internalParams; } } exports.ScheduledInsertableContentListQueryParamsBuilder = ScheduledInsertableContentListQueryParamsBuilder;