
com.xeiam.xchange.hitbtc.dto.trade.HitbtcOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-hitbtc Show documentation
Show all versions of xchange-hitbtc Show documentation
XChange implementation for Hitbtc exchange
The newest version!
package com.xeiam.xchange.hitbtc.dto.trade;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.hitbtc.dto.HitbtcBaseResponse;
public class HitbtcOrdersResponse extends HitbtcBaseResponse {
HitbtcOrder[] orders;
public HitbtcOrdersResponse(@JsonProperty("orders") HitbtcOrder[] orders) {
super();
this.orders = orders;
}
public HitbtcOrder[] getOrders() {
return orders;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("HitbtcOrdersResponse [orders=");
builder.append(Arrays.toString(orders));
builder.append("]");
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy