@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
40 lines (39 loc) • 1.19 kB
TypeScript
export interface LiveEncodingStatsEventListQueryParams {
/**
* Index of the first item to return, starting at 0. Default is 0
* @type {number}
* @memberof LiveEncodingStatsEventListQueryParams
*/
offset?: number | undefined;
/**
* Maximum number of items to return. Default is 25, maximum is 100
* @type {number}
* @memberof LiveEncodingStatsEventListQueryParams
*/
limit?: number | undefined;
/**
* Sort events by time in DESC order
* @type {boolean}
* @memberof LiveEncodingStatsEventListQueryParams
*/
sortByTime?: boolean | undefined;
}
export declare class LiveEncodingStatsEventListQueryParamsBuilder {
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 sortByTime Sort events by time in DESC order
*/
sortByTime(sortByTime: boolean): this;
buildQueryParams(): LiveEncodingStatsEventListQueryParams;
}