Package com.xeiam.xchange.hitbtc.dto.account

Examples of com.xeiam.xchange.hitbtc.dto.account.HitbtcBalanceResponse


  }

  public HitbtcBalance[] getAccountInfoRaw() throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {

    try {
      HitbtcBalanceResponse hitbtcBalance = hitbtc.getHitbtcBalance(signatureCreator, valueFactory, apiKey);
      return hitbtcBalance.getBalances();
    } catch (HitbtcException e) {
      throw new ExchangeException(e.getMessage());
    }
  }
View Full Code Here


  }

  public HitbtcBalanceResponse getAccountBaseInfoRaw() throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {

    try {
      HitbtcBalanceResponse hitbtcBalanceResponse = hitbtc.getHitbtcBalance(signatureCreator, valueFactory, apiKey);
      return hitbtcBalanceResponse;
    } catch (HitbtcException e) {
      throw new ExchangeException(e.getMessage());
    }
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.hitbtc.dto.account.HitbtcBalanceResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.