/** * 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 { EngineActivityWorkspaceWidgetResponse } from '../api'; import { EngineDefaultDeviceConfigResponse } from '../api'; /** * UserHelperServiceApi - axios parameter creator * @export */ export declare const UserHelperServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {Array} [fields] * @param {*} [options] Override http request option. * @throws {RequiredError} */ activityWorkspaceWidget: (fields?: Array, options?: any) => Promise; /** * * @param {string} type * @param {*} [options] Override http request option. * @throws {RequiredError} */ defaultDeviceConfig: (type: string, options?: any) => Promise; }; /** * UserHelperServiceApi - functional programming interface * @export */ export declare const UserHelperServiceApiFp: (configuration?: Configuration) => { /** * * @param {Array} [fields] * @param {*} [options] Override http request option. * @throws {RequiredError} */ activityWorkspaceWidget(fields?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} type * @param {*} [options] Override http request option. * @throws {RequiredError} */ defaultDeviceConfig(type: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * UserHelperServiceApi - factory interface * @export */ export declare const UserHelperServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {Array} [fields] * @param {*} [options] Override http request option. * @throws {RequiredError} */ activityWorkspaceWidget(fields?: Array, options?: any): AxiosPromise; /** * * @param {string} type * @param {*} [options] Override http request option. * @throws {RequiredError} */ defaultDeviceConfig(type: string, options?: any): AxiosPromise; }; /** * UserHelperServiceApi - object-oriented interface * @export * @class UserHelperServiceApi * @extends {BaseAPI} */ export declare class UserHelperServiceApi extends BaseAPI { /** * * @param {Array} [fields] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof UserHelperServiceApi */ activityWorkspaceWidget(fields?: Array, options?: any): Promise>; /** * * @param {string} type * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof UserHelperServiceApi */ defaultDeviceConfig(type: string, options?: any): Promise>; } //# sourceMappingURL=user-helper-service-api.d.ts.map