@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
51 lines (50 loc) • 1.65 kB
TypeScript
export interface LiveStandbyPoolEncodingListQueryParams {
/**
* Index of the first item to return, starting at 0. Default is 0
* @type {number}
* @memberof LiveStandbyPoolEncodingListQueryParams
*/
offset?: number | undefined;
/**
* Maximum number of items to return. Default is 25, maximum is 100
* @type {number}
* @memberof LiveStandbyPoolEncodingListQueryParams
*/
limit?: number | undefined;
/**
* Order list result according a stream key attribute. The fields that can be used for sorting are: + `createdAt` + `name` + `status`
* @type {string}
* @memberof LiveStandbyPoolEncodingListQueryParams
*/
sort?: string | undefined;
/**
* Filter standby encodings by status
* @type {string}
* @memberof LiveStandbyPoolEncodingListQueryParams
*/
status?: string | undefined;
}
export declare class LiveStandbyPoolEncodingListQueryParamsBuilder {
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 sort Order list result according a stream key attribute. The fields that can be used for sorting are: + `createdAt` + `name` + `status`
*/
sort(sort: string): this;
/**
*
* @param status Filter standby encodings by status
*/
status(status: string): this;
buildQueryParams(): LiveStandbyPoolEncodingListQueryParams;
}