/** * Audius API * * The version of the OpenAPI document: 1.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 { BalanceHistoryDataPoint } from './BalanceHistoryDataPoint'; /** * * @export * @interface BalanceHistoryResponse */ export interface BalanceHistoryResponse { /** * * @type {Array} * @memberof BalanceHistoryResponse */ data: Array; } /** * Check if a given object implements the BalanceHistoryResponse interface. */ export declare function instanceOfBalanceHistoryResponse(value: object): value is BalanceHistoryResponse; export declare function BalanceHistoryResponseFromJSON(json: any): BalanceHistoryResponse; export declare function BalanceHistoryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceHistoryResponse; export declare function BalanceHistoryResponseToJSON(value?: BalanceHistoryResponse | null): any;