/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { FtsSearchResponse } from '../api'; /** * FTSServiceApi - axios parameter creator * @export */ export declare const FTSServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [objectName] * @param {*} [options] Override http request option. * @throws {RequiredError} */ search: (page?: number, size?: number, q?: string, sort?: string, fields?: Array, objectName?: Array, options?: any) => Promise; }; /** * FTSServiceApi - functional programming interface * @export */ export declare const FTSServiceApiFp: (configuration?: Configuration) => { /** * * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [objectName] * @param {*} [options] Override http request option. * @throws {RequiredError} */ search(page?: number, size?: number, q?: string, sort?: string, fields?: Array, objectName?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * FTSServiceApi - factory interface * @export */ export declare const FTSServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [objectName] * @param {*} [options] Override http request option. * @throws {RequiredError} */ search(page?: number, size?: number, q?: string, sort?: string, fields?: Array, objectName?: Array, options?: any): AxiosPromise; }; /** * FTSServiceApi - object-oriented interface * @export * @class FTSServiceApi * @extends {BaseAPI} */ export declare class FTSServiceApi extends BaseAPI { /** * * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [objectName] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof FTSServiceApi */ search(page?: number, size?: number, q?: string, sort?: string, fields?: Array, objectName?: Array, options?: any): Promise>; } //# sourceMappingURL=ftsservice-api.d.ts.map