/** * 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. */ /** * * @export * @interface BalanceHistoryDataPoint */ export interface BalanceHistoryDataPoint { /** * Unix timestamp in seconds * @type {number} * @memberof BalanceHistoryDataPoint */ timestamp: number; /** * Total portfolio balance in USD at this timestamp * @type {number} * @memberof BalanceHistoryDataPoint */ balanceUsd: number; } /** * Check if a given object implements the BalanceHistoryDataPoint interface. */ export declare function instanceOfBalanceHistoryDataPoint(value: object): value is BalanceHistoryDataPoint; export declare function BalanceHistoryDataPointFromJSON(json: any): BalanceHistoryDataPoint; export declare function BalanceHistoryDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceHistoryDataPoint; export declare function BalanceHistoryDataPointToJSON(value?: BalanceHistoryDataPoint | null): any;