
com.xeiam.xchange.kraken.dto.account.results.KrakenTradeVolumeResult 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
XChange implementation for the Kraken Exchange
package com.xeiam.xchange.kraken.dto.account.results;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.kraken.dto.KrakenResult;
import com.xeiam.xchange.kraken.dto.account.KrakenTradeVolume;
public class KrakenTradeVolumeResult extends KrakenResult {
/**
* Constructor
*
* @param result
* @param error
*/
public KrakenTradeVolumeResult(@JsonProperty("result") KrakenTradeVolume result, @JsonProperty("error") String[] error) {
super(result, error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy