@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
40 lines (39 loc) • 1.13 kB
TypeScript
export interface AnalyticsAzureOutputListQueryParams {
/**
* Index of the first item to return, starting at 0. Default is 0
* @type {number}
* @memberof AnalyticsAzureOutputListQueryParams
*/
offset?: number | undefined;
/**
* Maximum number of items to return. Default is 25, maximum is 100
* @type {number}
* @memberof AnalyticsAzureOutputListQueryParams
*/
limit?: number | undefined;
/**
* Filter output by name
* @type {string}
* @memberof AnalyticsAzureOutputListQueryParams
*/
name?: string | undefined;
}
export declare class AnalyticsAzureOutputListQueryParamsBuilder {
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 name Filter output by name
*/
name(name: string): this;
buildQueryParams(): AnalyticsAzureOutputListQueryParams;
}