/** * Section API * Get edgey with the Section API * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { BillingHistory } from '../models'; import { BillingSummary } from '../models'; /** * BillingApi - axios parameter creator * @export */ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration) => { /** * Get basic billing information for account. * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingGet: (accountId: number, options?: any) => Promise; /** * Get billing history * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingHistoryGet: (accountId: number, options?: any) => Promise; }; /** * BillingApi - functional programming interface * @export */ export declare const BillingApiFp: (configuration?: Configuration) => { /** * Get basic billing information for account. * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingGet(accountId: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Get billing history * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingHistoryGet(accountId: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; }; /** * BillingApi - factory interface * @export */ export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Get basic billing information for account. * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingGet(accountId: number, options?: any): AxiosPromise; /** * Get billing history * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ accountBillingHistoryGet(accountId: number, options?: any): AxiosPromise>; }; /** * BillingApi - object-oriented interface * @export * @class BillingApi * @extends {BaseAPI} */ export declare class BillingApi extends BaseAPI { /** * Get basic billing information for account. * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BillingApi */ accountBillingGet(accountId: number, options?: any): Promise>; /** * Get billing history * @param {number} accountId The account identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BillingApi */ accountBillingHistoryGet(accountId: number, options?: any): Promise>; }