/** * 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. */ import { AccountBalances } from './AccountBalances'; import { ExchangeKeyEnum } from './ExchangeKeyEnum'; /** * * @export * @interface Account */ export interface Account { /** * * @type {string} * @memberof Account */ id: string; /** * * @type {ExchangeKeyEnum} * @memberof Account */ exchange: ExchangeKeyEnum; /** * Account type as reported by the exchange * @type {string} * @memberof Account */ type?: string; /** * List of balance entries for each currency held in the account * @type {Array} * @memberof Account */ balances: Array; /** * Human-friendly label if supplied by the exchange. * @type {string} * @memberof Account */ name?: string; /** * Blockchain network if relevant * @type {string} * @memberof Account */ chain?: string; } export declare function AccountFromJSON(json: any): Account; export declare function AccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): Account; export declare function AccountToJSON(value?: Account | null): any;