@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
40 lines (39 loc) • 1.24 kB
TypeScript
export interface StatisticsPerLabelListQueryParams {
/**
* Index of the first item to return, starting at 0. Default is 0
* @type {number}
* @memberof StatisticsPerLabelListQueryParams
*/
offset?: number | undefined;
/**
* Maximum number of items to return. Default is 25, maximum is 100
* @type {number}
* @memberof StatisticsPerLabelListQueryParams
*/
limit?: number | undefined;
/**
* Comma separated list of labels. Filter results to only show the ones specified
* @type {string}
* @memberof StatisticsPerLabelListQueryParams
*/
labels?: string | undefined;
}
export declare class StatisticsPerLabelListQueryParamsBuilder {
private internalParams;
/**
*
* @param offset Index of the first item to return, starting at 0. Default is 0
*/
offset(offset: number): this;
/**
*
* @param limit Maximum number of items to return. Default is 25, maximum is 100
*/
limit(limit: number): this;
/**
*
* @param labels Comma separated list of labels. Filter results to only show the ones specified
*/
labels(labels: string): this;
buildQueryParams(): StatisticsPerLabelListQueryParams;
}