org.knowm.xchange.therock.dto.account.TheRockBalances Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-therock Show documentation
Show all versions of xchange-therock Show documentation
XChange implementation for The Rock Trading Exchange
package org.knowm.xchange.therock.dto.account;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import java.util.List;
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class TheRockBalances {
private List balances;
public List getBalances() {
return balances;
}
@Override
public String toString() {
return String.format("TheRockBalances{balances=%s}", balances);
}
}