org.knowm.xchange.btcchina.dto.trade.BTCChinaTransactions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-btcchina Show documentation
Show all versions of xchange-btcchina Show documentation
XChange implementation for BTC China
The newest version!
package org.knowm.xchange.btcchina.dto.trade;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BTCChinaTransactions {
private final List transactions;
public BTCChinaTransactions(@JsonProperty("transaction") List transactions) {
this.transactions = transactions;
}
public List getTransactions() {
return transactions;
}
@Override
public String toString() {
return String.format("BTCChinaTransactions{transactions=%s}", transactions);
}
}