/** * Faraday REST API * The [Faraday](https://faraday.ai) API makes it easy to predict customer behavior programmatically. See our [API change policy](https://faraday.ai/legal). * * The version of the OpenAPI document: 1.0.0 * Contact: support@faraday.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { AccountBilling } from '../models'; export interface GetAccountBillingRequest { accountId: string; } /** * */ export declare class BillingApi extends runtime.BaseAPI { /** * Get invoices, payments, and usage stats for your account. * Get billing information about your account. */ getAccountBillingRaw(requestParameters: GetAccountBillingRequest): Promise>; /** * Get invoices, payments, and usage stats for your account. * Get billing information about your account. */ getAccountBilling(accountId: string): Promise; /** * Get invoices, payments, and usage stats for the current account. * Get billing information about the current account. */ getCurrentAccountBillingRaw(): Promise>; /** * Get invoices, payments, and usage stats for the current account. * Get billing information about the current account. */ getCurrentAccountBilling(): Promise; }