
org.knowm.xchange.kraken.dto.account.results.KrakenTradeBalanceInfoResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kraken Show documentation
Show all versions of xchange-kraken Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.kraken.dto.account.results;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.kraken.dto.KrakenResult;
import org.knowm.xchange.kraken.dto.account.KrakenTradeBalanceInfo;
public class KrakenTradeBalanceInfoResult extends KrakenResult {
/**
* Constructor
*
* @param result
* @param error
*/
public KrakenTradeBalanceInfoResult(
@JsonProperty("result") KrakenTradeBalanceInfo result,
@JsonProperty("error") String[] error) {
super(result, error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy