/** * Bandwidth * Bandwidth\'s Communication APIs * * The version of the OpenAPI document: 1.0.0 * Contact: letstalk@bandwidth.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 type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { AccountStatistics } from '../models'; /** * StatisticsApi - axios parameter creator */ export declare const StatisticsApiAxiosParamCreator: (configuration?: Configuration) => { /** * Returns details about the current state of the account. * @summary Get Account Statistics * @param {string} accountId Your Bandwidth Account ID. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getStatistics: (accountId: string, options?: RawAxiosRequestConfig) => Promise; }; /** * StatisticsApi - functional programming interface */ export declare const StatisticsApiFp: (configuration?: Configuration) => { /** * Returns details about the current state of the account. * @summary Get Account Statistics * @param {string} accountId Your Bandwidth Account ID. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getStatistics(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * StatisticsApi - factory interface */ export declare const StatisticsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Returns details about the current state of the account. * @summary Get Account Statistics * @param {string} accountId Your Bandwidth Account ID. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getStatistics(accountId: string, options?: RawAxiosRequestConfig): AxiosPromise; }; /** * StatisticsApi - object-oriented interface */ export declare class StatisticsApi extends BaseAPI { /** * Returns details about the current state of the account. * @summary Get Account Statistics * @param {string} accountId Your Bandwidth Account ID. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getStatistics(accountId: string, options?: RawAxiosRequestConfig): Promise>; }