export interface HttpInputListQueryParams { /** * Index of the first item to return, starting at 0. Default is 0 * @type {number} * @memberof HttpInputListQueryParams */ offset?: number | undefined; /** * Maximum number of items to return. Default is 25, maximum is 100 * @type {number} * @memberof HttpInputListQueryParams */ limit?: number | undefined; /** * Filter inputs by name * @type {string} * @memberof HttpInputListQueryParams */ name?: string | undefined; } export declare class HttpInputListQueryParamsBuilder { 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 inputs by name */ name(name: string): this; buildQueryParams(): HttpInputListQueryParams; }