/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.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 AccountBalances */ export interface AccountBalances { /** * Chain symbol that funds are denominated in. * @type {string} * @memberof AccountBalances */ currency: string; /** * amount held in associated currency * @type {number} * @memberof AccountBalances */ balance: number; /** * Funds immediately available for withdrawal or trading * @type {number} * @memberof AccountBalances */ availableBalance?: number; /** * URL of the token or currency logo image * @type {string} * @memberof AccountBalances */ logoURI?: string; } export declare function AccountBalancesFromJSON(json: any): AccountBalances; export declare function AccountBalancesFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBalances; export declare function AccountBalancesToJSON(value?: AccountBalances | null): any;