/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Configuration } from '../configuration'; import type { AxiosInstance } from 'axios'; import { RequestArgs, BaseAPI } from '../base'; import { GetUserSettingsResponse } from '../models'; /** * UserSettingsApi - axios parameter creator * @export */ export declare const UserSettingsApiAxiosParamCreator: (configuration?: Configuration) => { /** * Lists the settings of an authorized user. Example response contains a shortened list of settings. * @summary List settings of an authorized user * @throws {RequiredError} */ getUserSettings: () => Promise; }; /** * UserSettingsApi - functional programming interface * @export */ export declare const UserSettingsApiFp: (configuration?: Configuration) => { /** * Lists the settings of an authorized user. Example response contains a shortened list of settings. * @summary List settings of an authorized user * @throws {RequiredError} */ getUserSettings(): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>; }; /** * UserSettingsApi - factory interface * @export */ export declare const UserSettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Lists the settings of an authorized user. Example response contains a shortened list of settings. * @summary List settings of an authorized user * @throws {RequiredError} */ getUserSettings(): Promise; }; /** * UserSettingsApi - object-oriented interface * @export * @class UserSettingsApi * @extends {BaseAPI} */ export declare class UserSettingsApi extends BaseAPI { /** * Lists the settings of an authorized user. Example response contains a shortened list of settings. * @summary List settings of an authorized user * @throws {RequiredError} * @memberof UserSettingsApi */ getUserSettings(): Promise; }